/* =========================================
   COMPANY SNAPSHOT / KEY FACTS
========================================= */

.company-stats {
    position: relative;

    padding: 30px 0 32px;

    background: #07533f !important;

    overflow: hidden;
}


/* =========================================
   BUILDING PATTERN
========================================= */

.company-stats-pattern {
    position: absolute;

    /*right: -20px;
    bottom: -35px;*/

    width: 100%;
    height: 100%;

    background-image: url("../images/building-pattern.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    opacity: 1;

    pointer-events: none;

    z-index: 0;
}


/* Soft overlay over pattern */

/*.company-stats-pattern::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        #07533f 0%,
        rgba(7,83,63,0.35) 35%,
        rgba(7,83,63,0) 100%
    );
}*/


/* =========================================
   CONTAINER
========================================= */

.company-stats .container {
    position: relative;

    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.company-stats .section-title {
    margin-bottom: 24px;
}


.company-stats .section-sub-title {
    display: inline-block;

    position: relative;

    border-radius: 100px;
    padding: 8px 16px 8px 32px;
    margin-bottom: 15px;

    background: var(--bg-color);

    font-family: inherit;

    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;

    letter-spacing: 0px;

    color: #07533f !important;
}



.company-stats .section-title h2 {
    /*max-width: 900px;*/

    margin: 0 auto 30px;

    font-family: inherit;

    font-size: 22px;

    line-height: 1.35;

    font-weight: 600;

    letter-spacing: 0px;

    color: #ffffff !important;
}


/* =========================================
   STAT COLUMNS
========================================= */

.company-stats .row.g-0 > div {
    position: relative;
}


/* =========================================
   STAT ITEM
========================================= */

.company-stats .stat-item {

    position: relative;

    width: 100%;

    min-height: 125px;

    padding: 10px 5px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: transparent !important;

    border: 0 !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    transition: all 0.3s ease;
}


/* =========================================
   VERTICAL SEPARATOR
========================================= */

@media (min-width: 992px) {

    .company-stats .row.g-0 > div:not(:first-child)::before {

        content: "";

        position: absolute;

        left: 0;

        top: 50%;

        width: 1px;

        height: 52px;

        background: rgba(255,255,255,0.38);

        transform: translateY(-50%);
    }
}


/* =========================================
   ICON
========================================= */

.company-stats .stat-icon {

    width: 45px;
    height: 45px;

    margin: 0 0 10px 0 !important;

    padding: 0;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex-shrink: 0;

    background: transparent !important;

    color: #ffffff !important;

    border: 0 !important;

    border-radius: 0;

    font-size: 30px;

    line-height: 1;

    transition: all 0.3s ease;
}


/* Icon hover */

.company-stats .stat-item:hover .stat-icon {

    background: transparent !important;

    color: #ffffff !important;

    transform: translateY(-2px);
}


/* =========================================
   CONTENT
========================================= */

.company-stats .stat-content {

    width: 100%;

    min-width: 0;

    text-align: center;
}


/* =========================================
   NUMBER
========================================= */

.company-stats .stat-content h3 {

    margin: 0 0 10px 0 !important;

    padding: 0;

    display: flex;

    align-items: baseline;

    justify-content: center;

    white-space: nowrap;

    font-family: inherit;

    font-size: 27px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -0.5px;

    color: #ffffff !important;
}


/* Orange + */

.company-stats .stat-content h3 .plus {

    margin-left: 2px;

    color: #f36b21 !important;
}


/* Dash */

.company-stats .range-dash {

    margin: 0 3px;

    color: #ffffff !important;
}


/* =========================================
   LABEL
========================================= */

.company-stats .stat-content p {

    margin: 0 !important;

    padding: 0;

    font-family: inherit;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 500;

    letter-spacing: 0;

    text-transform: none;

    text-align: center;

    white-space: nowrap;

    color: rgba(255,255,255,0.90) !important;
}


/* =========================================
   HOVER
========================================= */

.company-stats .stat-item:hover {

    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .company-stats {
        padding: 28px 0 30px;
    }

    .company-stats-pattern {
        width: 75%;
        opacity: 0.08;
    }

    .company-stats .stat-item {
        min-height: 115px;
    }

    .company-stats .stat-icon {
        width: 38px;
        height: 38px;

        font-size: 24px;
    }

    .company-stats .stat-content h3 {
        font-size: 24px;
    }

    .company-stats .stat-content p {
        font-size: 10px;
    }
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 991px) {

    .company-stats {
        padding: 32px 0;
    }

    .company-stats-pattern {
        width: 100%;
        height: 80%;

        right: -20px;
        bottom: 0;

        background-position: right bottom;

        opacity: 0.07;
    }

    .company-stats .section-title {
        margin-bottom: 22px;
    }

    .company-stats .section-title h2 {
        font-size: 19px;
    }


    /* 2 column layout */

    .company-stats .row.g-0 > div:nth-child(even)::before {

        content: "";

        position: absolute;

        left: 0;

        top: 50%;

        width: 1px;

        height: 48px;

        background: rgba(255,255,255,0.30);

        transform: translateY(-50%);
    }


    .company-stats .stat-item {

        min-height: 105px;

        padding: 12px 8px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .company-stats {
        padding: 30px 0;
    }

    .company-stats-pattern {
        opacity: 0.055;
    }

    .company-stats .section-sub-title {
        font-size: 9px;

        letter-spacing: 1.4px;

        padding: 5px 11px;
    }

    .company-stats .section-title h2 {
        font-size: 16px;

        line-height: 1.4;
    }

    .company-stats .stat-item {
        min-height: 100px;

        padding: 10px 5px;
    }

    .company-stats .stat-icon {

        width: 35px;
        height: 35px;

        margin-bottom: 5px !important;

        font-size: 21px;
    }

    .company-stats .stat-content h3 {
        font-size: 22px;

        margin-bottom: 4px !important;
    }

    .company-stats .stat-content p {
        font-size: 9px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .company-stats {
        padding: 27px 0;
    }

    .company-stats-pattern {
        width: 120%;

        right: -50px;

        opacity: 0.05;
    }

    .company-stats .section-title {
        margin-bottom: 17px;
    }

    .company-stats .section-sub-title {
        font-size: 8px;

        letter-spacing: 1.2px;
    }

    .company-stats .section-title h2 {
        font-size: 14px;
    }

    .company-stats .stat-item {
        min-height: 120px;

        padding: 14px 5px;
    }

    .company-stats .stat-icon {

        width: 40px;
        height: 40px;

        font-size: 28px;
    }

    .company-stats .stat-content h3 {
        font-size: 35px;
    }

    .company-stats .stat-content p {
        font-size: 16px;
    }
}





/* =========================================
   18-GAUGE STEEL REINFORCEMENT
========================================= */

.steel-reinforcement-box {
    position: relative;
    overflow: hidden;
    /*background: #f7fbfd;
    border: 1px solid rgba(127, 179, 213, 0.35);*/
    border-radius: 18px;
    padding: 0;
    margin: 30px 0;
}

/* subtle background element */
.steel-reinforcement-box::after {
    content: "18G";
    position: absolute;
    right: -25px;
    bottom: -55px;
    font-size: 180px;
    line-height: 1;
    font-weight: 900;
    color: rgba(127, 179, 213, 0.08);
    pointer-events: none;
}

/* Main body */
.steel-reinforcement-box .project-feedback-body {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 45px;
    padding: 45px 50px;
}

/* 18 Gauge Badge */
.steel-gauge-badge {
    min-width: 145px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: #F06003;
    color: #fff;
    border: 5px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 12px 30px rgba(240, 96, 3, 0.20);
}


.steel-gauge-badge span {
    font-size: 52px;
    line-height: 0.9;
    font-weight: 800;
}

.steel-gauge-badge small {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 6px;
}

.steel-gauge-badge strong {
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 2px;
}

/* Content */
.steel-reinforcement-box .project-feedback-body-content {
    flex: 1;
}

.steel-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    color: #F06003;
    margin-bottom: 10px;
}

.steel-reinforcement-box h2 {
    margin: 0 0 15px;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: #1e2933;
}

.steel-reinforcement-box h2 span {
    color: #F06003;
}

.steel-reinforcement-box p {
    max-width: 800px;
    margin: 0;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}

.steel-reinforcement-box p strong {
    color: #1e2933;
    font-weight: 700;
}

/* Feature Points */
.steel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.steel-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: #fff;
    border: 1px solid #e4edf2;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #34434d;
}

.steel-features i {
    color: #F06003;
    font-size: 13px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .steel-reinforcement-box .project-feedback-body {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        gap: 25px;
    }

    .steel-gauge-badge {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }

    .steel-gauge-badge span {
        font-size: 42px;
    }

    .steel-reinforcement-box h2 {
        font-size: 27px;
    }

    .steel-reinforcement-box p {
        font-size: 14px;
    }

    .steel-features {
        justify-content: center;
    }

}

/*end*/

/*project slider */

.project-slider {
    width: 100%;
    position: relative;
}

.project-slider .item {
    width: 100%;
    height: 500px;
}

.project-slider .item img {
    display: block !important;
    width: 100% !important;
    height: 500px !important;
    object-fit: cover;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Arrows */
.project-slider .owl-prev,
.project-slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: #F06003 !important;
    color: #fff !important;
    z-index: 10;
}

.project-slider .owl-prev {
    left: 20px;
}

.project-slider .owl-next {
    right: 20px;
}

/* Dots */
.project-slider .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
}

.project-slider .owl-dot span {
    background: #fff !important;
}

.project-slider .owl-dot.active span {
    background: #F06003 !important;
}

/*end here*/

.footer-copyright-text-stone p a{
    color: #aaa;
    font-size: 13px;
}

.footer-copyright-text-stone p a:hover {
    color: #ef6406;
}




/**************************/

/****************shipra css starts here***/


/* =========================================
   CANDIDA LOGO - DESKTOP
========================================= */

.candida-logo {
    display: flex !important;
    align-items: center;
    flex-shrink: 0;

    width: 300px;
    height: auto;

    padding: 0 !important;
    margin: 0 !important;
}

.candida-logo img {
    display: block;

    width: 100%;
    height: auto;

    max-width: 100%;
    min-width: 0;


    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;



    /*object-fit: contain;*/

    /* Prevent browser interpolation issues */
    image-rendering: auto;
}


/* Header alignment */

.main-header .navbar > .container {
    display: flex;
    align-items: center;
}

.main-header .navbar-brand {
    margin-right: 35px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .candida-logo {
        width: 215px;
    }

    .main-header .navbar-brand {
        margin-right: 20px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .candida-logo {
        width: 200px;
        max-width: 65%;
    }

    .main-header .navbar-brand {
        margin-right: 0;
    }

    .candida-logo img {
        width: 100%;
        height: auto;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .candida-logo {
        width: 185px;
        max-width: 60%;
    }

    .candida-logo img {
        width: 100%;
        height: auto;
    }
}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .candida-logo {
        width: 165px;
        max-width: 58%;
    }
}



/******************************/




/* =========================================
   WHAT GOES INSIDE A WINDOW
========================================= */

.window-inside-section {
    padding: 50px 0 50px;
    background: #ffffff;
}


/* Heading */

.window-section-title {
    text-align: center;
    margin-bottom: 30px;
}

.window-section-title h2 {
    margin: 0 0 15px;
    font-family: inherit;
    font-size: 30px;
    line-height: 1.22;
    font-weight: 600;
    letter-spacing: 0px;
    color: #073c35;
}

.window-section-title span {
    display: inline-block;
    position: relative;
    border-radius: 100px;
    padding: 8px 16px 8px 32px;
    margin-bottom: 15px;
    background: #f8f5ee !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2;
    letter-spacing: 0px;
    color: #07533f !important;
}


/* =========================================
   GRID
========================================= */

.window-inside-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   CARD
========================================= */

.window-inside-card {
    min-height: 245px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #ddd;

    border-radius: 10px;

    transition: 0.3s ease;
}


.window-inside-card:hover {
    border-color: #b8cbc5;

    box-shadow: 0 8px 12px rgba(0,0,0,0.09);

    transform: translateY(-3px);
}


/* =========================================
   CONTENT
========================================= */

.window-card-content {
    width: 60%;
    padding: 15px 10px 5px 22px;
}


/* Logo */

.window-brand-logo {
    display: block;

    width: auto;
    max-width: 165px;
    height: 60px;

    object-fit: contain;

    object-position: left center;

    margin-bottom: 10px;
}


/* Paragraph */

.window-card-content p {
    margin: 0 0 15px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    color: #394b4a;
}


/* =========================================
   BUTTON
========================================= */

.window-learn-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 22px;

    border-radius: 25px;

    background: #07533f;

    color: #ffffff !important;

    font-family: inherit;

    font-size: 13px;
    line-height: 20px;
    font-weight: 500;

    text-decoration: none !important;

    transition: 0.3s ease;
}


.window-learn-btn:hover {
    background: #f85b00;
    color: #ffffff !important;
}


/* =========================================
   IMAGE
========================================= */

.window-card-image {
    width: 40%;

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.window-card-image img {
    width: 100%;
    max-width: 150px;

    height: auto;

    max-height: 180px;

    object-fit: contain;

    transition: 0.4s ease;
}


.window-inside-card:hover .window-card-image img {
    transform: scale(1.04);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .window-inside-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .window-inside-card {
        min-height: 210px;
    }

    .window-card-content {
        width: 60%;
    }

    .window-card-image {
        width: 40%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .window-inside-section {
        padding: 35px 0 40px;
    }

    .window-section-title {
        margin-bottom: 20px;
    }

    .window-section-title h2 {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .window-inside-card {
        min-height: 190px;
    }

    .window-card-content {
        width: 60%;
        padding: 20px 5px 20px 18px;
    }

    .window-brand-logo {
        max-width: 115px;
        height: 35px;
        margin-bottom: 10px;
    }

    .window-card-content p {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 13px;
    }

    .window-learn-btn {
        padding: 7px 13px;
        font-size: 9px;
    }

    .window-card-image {
        width: 40%;
    }

    .window-card-image img {
        max-width: 120px;
        max-height: 145px;
    }
}

/******************************************/


/* =========================================
   WHY CHOOSE CANDIDA
========================================= */

.why-choose-section {
    padding: 50px 0;

    background: #f8f7f1;

    overflow: hidden;
}


/* =========================================
   LEFT IMAGE
========================================= */

.why-choose-image {
    position: relative;

    width: 100%;

    height: 520px;

    overflow: hidden;

    border-radius: 18px;

    background: #e9e8df;
}


.why-choose-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.6s ease;
}


.why-choose-image:hover img {
    transform: scale(1.025);
}


/* Orange curved accent */

.why-choose-image::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -95px;
    top: 50%;

    transform: translateY(-50%);

    border: 2px solid #f85b00;

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   CONTENT
========================================= */

.why-choose-content {
    padding-left: 15px;
}


/* =========================================
   LABEL
========================================= */

.why-choose-label {
    position: relative;

    display: inline-block;

    margin-bottom: 14px;
    padding-bottom: 9px;

    font-family: inherit;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #f85b00;
}


.why-choose-label::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 2px;

    background: #f85b00;
}


/* =========================================
   HEADING
========================================= */

.why-choose-content h2 {
    margin: 0 0 15px;

    font-family: inherit;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 600;

    letter-spacing: 0px;

    color: #073c35;
}


.why-choose-content .section-title p {
    color: #444;
}


/* =========================================
   DESCRIPTION
========================================= */

.why-choose-description {
    max-width: 600px;

    margin: 0 0 25px;

    font-family: inherit;

    font-size: 13px;

    line-height: 1.7;

    color: #4c5d5a;
}


/* =========================================
   FEATURES GRID
========================================= */

.why-choose-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    column-gap: 30px;

    row-gap: 0;

    margin-bottom: 25px;
}


/* =========================================
   FEATURE ITEM
========================================= */

.why-feature {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 0;

    border-bottom: 1px solid #d9dfdb;
}


.why-feature:nth-child(5),
.why-feature:nth-child(6) {
    border-bottom: none;
}


/* =========================================
   FEATURE ICON
========================================= */

.why-feature-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #fff;

    border: 1px solid #dfe6dc;

    color: #07533f;

    font-size: 25px;

    transition: all 0.3s ease;
}


.why-feature:hover .why-feature-icon {
    background: #07533f;

    color: #ffffff;

    border-color: #07533f;

    transform: translateY(-2px);
}


/* =========================================
   FEATURE CONTENT
========================================= */

.why-feature-content {
    padding-top: 2px;
}


.why-feature-content h4 {
    margin: 0 0 4px;

    font-family: inherit;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 600;

    color: #173c3a;
}


.why-feature-content p {
    margin: 0;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.5;

    color: #444;
}


/* =========================================
   BUTTON
========================================= */

.why-choose-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 12px 20px;

    border-radius: 6px;

    background: #07533f;

    color: #ffffff !important;

    font-family: inherit;

    font-size: 12px;

    font-weight: 500;

    text-decoration: none !important;

    transition: all 0.3s ease;
}


.why-choose-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}


.why-choose-btn:hover {
    background: #f85b00;

    color: #ffffff !important;
}


.why-choose-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-image {
        height: 560px;
    }

    .why-choose-content {
        padding-left: 25px;
    }

    .why-choose-content h2 {
        font-size: 42px;
    }

    .why-choose-description {
        font-size: 14px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-image {
        height: 470px;
    }

    .why-choose-content h2 {
        font-size: 32px;
    }

    .why-choose-features {
        column-gap: 20px;
    }

    .why-feature-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .why-feature-content h4 {
        font-size: 13px;
    }

    .why-feature-content p {
        font-size: 9px;
    }
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 50px 0;
    }

    .why-choose-image {
        height: 400px;
    }

    .why-choose-image::after {
        display: none;
    }

    .why-choose-content {
        padding-left: 0;
    }

    .why-choose-content h2 {
        font-size: 30px;
    }

    .why-choose-description {
        font-size: 12px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-image {
        height: 330px;

        border-radius: 14px;
    }

    .why-choose-label {
        font-size: 10px;

        letter-spacing: 1.3px;
    }

    .why-choose-content h2 {
        font-size: 27px;

        line-height: 1.25;
    }

    .why-choose-description {
        font-size: 11px;

        line-height: 1.65;

        margin-bottom: 20px;
    }

    .why-choose-features {
        grid-template-columns: 1fr;

        margin-bottom: 20px;
    }

    .why-feature:nth-child(5),
    .why-feature:nth-child(6) {
        border-bottom: 1px solid #d9dfdb;
    }

    .why-feature:last-child {
        border-bottom: none;
    }

    .why-feature {
        padding: 12px 0;
    }

    .why-feature-icon {
        flex-basis: 42px;

        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .why-feature-content h4 {
        font-size: 13px;
    }

    .why-feature-content p {
        font-size: 9px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-choose-image {
        height: 280px;
    }

    .why-choose-content h2 {
        font-size: 24px;
    }

    .why-choose-description {
        font-size: 10px;
    }

    .why-feature-icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;

        font-size: 14px;
    }

    .why-feature-content h4 {
        font-size: 12px;
    }

    .why-feature-content p {
        font-size: 8px;
    }

    .why-choose-btn {
        padding: 10px 17px;

        font-size: 10px;
    }
}


/* ================================
   About Us - Project Cards
================================ */

.about-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 25px;
}

/* Project Card */
.about-us-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 82px;
    overflow: hidden;
    background: #6aa391;
    border: 1px solid #2e5d4e;
    border-radius: 14px;
    box-shadow: 0 3px 12px rgba(46, 93, 78, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Green top/left accent */
.about-us-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #2e5d4e;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

/* Content */
.about-us-content1 {
    width: 100%;
    padding: 15px 14px 15px 14px;
    text-align: center;
}

.about-us-content1 p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

/* Hover */
.about-us-card:hover {
    transform: translateY(-5px);
    border-color: #b8cbc5;
    box-shadow: 0 12px 25px rgba(46, 93, 78, 0.12);
}

.about-us-card:hover::before {
    transform: scaleY(1);
}

.about-us-card:hover::after {
    background: #2e5d4e;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}


/* == Tablet == */
@media (max-width: 1100px) {
    .about-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}


/* == Mobile == */
@media (max-width: 768px) {
    .about-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-us-card {
        min-height: 78px;
    }

    .about-us-content {
        padding: 14px 10px 14px 48px;
    }

    .about-us-content p {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-us-card {
        min-height: 70px;
    }
}

/* ======= COMMON CTA SECTION ====== */
.common-cta {
    padding: 70px 50px;
    background: #ffffff;
}

.cta-container {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    background: #e5eaf3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(46, 93, 78, 0.08);
}


/* =========================================
   CTA CONTENT
========================================= */

.cta-content {
    padding: 50px 50px;
    text-align: justify;
}

.cta-label {
    display: inline-block;
    padding: 10px 18px;
    background: #fbfffc;
    color: #2e5d4e;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-content h3 {
    margin: 20px 0 15px;
    color: #193f35;
    font-size: 32px;
}

.cta-content h3::after {
    content: "";
    display: block;
    width: 75px;
    height: 4px;
    margin-top: 20px;
    background: #2e5d4e;
}

.cta-content p {
    max-width: 560px;
    margin: 20px 0;
    color: #596763;
    font-size: 17px;
    line-height: 1.7;
}


/* =========================================
   BUTTONS
========================================= */

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 170px;
    padding: 15px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn span {
    font-size: 20px;
}

.cta-btn.primary {
    background: #2e5d4e;
    color: #ffffff;
}

.cta-btn.primary:hover {
    background: #234b40;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: #ffffff;
    color: #2e5d4e;
    border: 1px solid #2e5d4e;
}

.cta-btn.secondary:hover {
    background: #2e5d4e;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   BENEFITS
========================================= */

.cta-benefits {
    display: flex;
    gap: 28px;
    margin-top: 25px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 25px;
    border-right: 1px solid #e1e6e3;
}

.cta-benefit:last-child {
    padding-right: 0;
    border-right: none;
}

.benefit-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fbfffc;
    color: #2e5d4e;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
}

.cta-benefit strong,
.cta-benefit small {
    display: block;
}

.cta-benefit strong {
    color: #2e5d4e;
    font-size: 14px;
}

.cta-benefit small {
    margin-top: 3px;
    color: #65736f;
    font-size: 12px;
}


/* =========================================
   CTA IMAGE
========================================= */

.cta-image {
    min-height: 430px;
    overflow: hidden;
}

.cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-container:hover .cta-image img {
    transform: scale(1.03);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .cta-container {
        grid-template-columns: 1fr;
        margin: 0 25px;
    }

    .cta-image {
        height: 350px;
        min-height: auto;
    }

    .cta-content h2 {
        font-size: 38px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .common-cta {
        padding: 45px 0;
    }

    .cta-container {
        margin: 0 15px;
        border-radius: 18px;
    }

    .cta-content {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .cta-benefits {
        flex-direction: column;
        gap: 18px;
        margin-top: 35px;
    }

    .cta-benefit {
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #e1e6e3;
    }

    .cta-benefit:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .cta-image {
        height: 280px;
    }

}

/***********UPVC Windows & Doors starts here************/

/* =========================================================
   WINDOW SOLUTIONS SECTION
========================================================= */
.window-solutions-section {
    position: relative;
    padding: 50px 0 10px;
    background: #fff;
    overflow: hidden;
}

.window-solutions-section .container {
    position: relative;
    z-index: 2;
}


/* ================= HEADING ================= */
.window-solutions-heading {
    text-align: center;
    margin-bottom: 40px;
}

.window-solutions-heading h2 {
    margin-bottom: 10px;;
    color: #123f32;
    font-family: inherit;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 1px;
}

.window-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0 10px;
}

.window-heading-line span {
    display: block;
    width: 135px;
    height: 1px;
    background: #174f3f;
}

.window-heading-line i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #174f3f;
    font-size: 14px;
}

.window-solutions-heading p {
    margin: 0;
    color: #555;
    font-size: 15px;
    letter-spacing: .2px;
}


/* ================= WINDOW ITEM ================= */
.window-solution-item {
    margin-bottom: 42px;
}


/* ================= TITLE ================= */
.window-title-row {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f3ecde;
}

.window-number {
    width: 65px;
    height: 50px;
    flex: 0 0 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #174f3f;
    border-radius: 4px;
    font-family: inherit;
    font-size: 27px;
    font-weight: 700;
    box-shadow: 0 7px 18px rgba(23, 79, 63, .16);
}

.window-title {
    flex: 1;
    min-width: 0;
}

.window-title h3 {
    margin: 0 0 2px;
    color: #123f32;
    font-family: inherit;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 700;
}

.window-title p {
    margin: 0;
    color: #555;
    font-size: 14px;
}


/* =========================================================
   CONSULTATION BUTTON - BESIDE WINDOW TITLE
========================================================= */
.window-title-row .window-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 10px;
    min-width: 245px;
    padding: 12px 20px;
    color: #fff !important;
    background: #174f3f;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all .3s ease;
}

.window-title-row .window-consult-btn:hover {
    background: #103b2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23,79,63,.18);
}

.window-title-row .window-consult-btn i {
    font-size: 16px;
    transition: transform .3s ease;
}

.window-title-row .window-consult-btn:hover i {
    transform: translateX(4px);
}


/* ================= MAIN COMPARISON ================= */
.window-comparison {
    display: grid;
    /* EXACT 6 + 6 */
    grid-template-columns: 29% 71%;
    width: 100%;
    border: 1px solid #e5ddce;
    border-radius: 11px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(30, 52, 44, .07);
}


/* ================= IMAGE ================= */
.window-image {
    position: relative;
    min-height: 375px;
    overflow: hidden;
}

.window-image img {
    width: 100%;
    height: 100%;
    min-height: 375px;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.window-solution-item:hover .window-image img {
    transform: scale(1.035);
}


/* ================= RIGHT CONTENT ================= */
.window-comparison-content {
    background: #fff;
    min-width: 0;
}


/* ================= COLUMN HEADINGS ================= */
.window-column-headings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 45px;
    background: #174f3f;
    color: #fff;
}

.window-column-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 700;
    border-left: 1px solid rgba(255,255,255,.7);
    text-align: center;
}

.window-column-title:first-child {
    border-left: 0;
}

.window-column-title i {
    font-size: 19px;
}


/* ================= INFO ROW ================= */
.window-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e7dfd2;
}

.window-info-row:last-child {
    border-bottom: 0;
}


/* ================= INFO CELL ================= */
.window-info-cell {
    min-height: 79px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 11px 15px;
    border-left: 1px solid #e7dfd2;
    transition: background .3s ease;
    min-width: 0;
}

.window-info-cell:first-child {
    border-left: 0;
}

.window-info-cell:hover {
    background: #fbf8f1;
}


/* ================= ICON ================= */
.info-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3ecde;
    color: #174f3f;
    font-size: 20px;
    border: 1px solid #eadfcd;
    transition: all .3s ease;
}

.window-info-cell:hover .info-icon {
    background: #174f3f;
    color: #fff;
    transform: translateY(-2px);
}


/* ================= TEXT ================= */
.info-content {
    flex: 1;
    min-width: 0;
}

.info-content h4 {
    margin: 0 0 4px;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.info-content p {
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 1.38;
}


/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1199px) {

    .window-comparison {
        grid-template-columns: 50% 50%;
    }

    .window-column-title {
        font-size: 14px;
        gap: 7px;
        padding: 10px 8px;
    }

    .window-info-cell {
        gap: 11px;
        padding: 10px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 17px;
    }

    .info-content p {
        font-size: 13px;
    }

    /* Title Button */

    .window-title-row .window-consult-btn {
        min-width: 210px;
        padding: 11px 15px;
        font-size: 12px;
    }

}


/* ================= MOBILE ================= */
@media (max-width: 767px) {

    .window-solutions-section {
        padding: 50px 0 45px;
        overflow: hidden;
    }

    .window-solutions-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }


    /* ================= HEADING ================= */
    .window-solutions-heading {
        margin-bottom: 30px;
    }

    .window-solutions-heading h2 {
        font-size: 27px;
        line-height: 1.15;
        letter-spacing: .5px;
    }

    .window-heading-line {
        margin: 10px 0 8px;
        gap: 9px;
    }

    .window-heading-line span {
        width: 65px;
    }

    .window-heading-line i {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .window-solutions-heading p {
        font-size: 13px;
    }


    /* ================= WINDOW ITEM ================= */
    .window-solution-item {
        margin-bottom: 35px;
    }


    /* ================= TITLE ================= */
    .window-title-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        padding: 12px;
    }

    .window-number {
        width: 50px;
        height: 43px;
        min-width: 50px;
        flex: 0 0 50px;
        font-size: 22px;
        border-radius: 4px;
    }

    .window-title {
        flex: 1;
        min-width: 0;
    }

    .window-title h3 {
        font-size: 20px;
        line-height: 1.15;
        white-space: normal;
    }

    .window-title p {
        font-size: 11px;
        line-height: 1.3;
    }


    /* =====================================================
       MOBILE CONSULTATION BUTTON
       Full width below title
    ===================================================== */
    .window-title-row .window-consult-btn {
        flex: 0 0 100%;
        width: 100%;
        min-width: 0;
        margin-top: 3px;
        padding: 11px 15px;
        font-size: 12px;
    }


    /* =====================================================
       MAIN BOX
    ===================================================== */
    .window-comparison {
        display: block;
        width: 100%;
        border-radius: 9px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(30, 52, 44, .08);
    }


    /* ======= IMAGE ===================== */
    .window-image {
        display: block;
        width: 100%;
        height: 230px;
        min-height: 230px;
        overflow: hidden;
    }

    .window-image img {
        display: block;
        width: 100%;
        height: 230px;
        min-height: 230px;
        object-fit: cover;
    }


    /* ======== CONTENT =============== */
    .window-comparison-content {
        width: 100%;
    }


    /* ========== B2C / B2B HEADINGS =============== */
    .window-column-headings {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        min-height: 52px;
    }

    .window-column-title {
        min-width: 0;
        padding: 8px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 5px;
        font-size: 10px;
        line-height: 1.25;
    }

    .window-column-title i {
        flex-shrink: 0;
        font-size: 14px;
    }


    /* ============= INFO ROW ================ */
    .window-info-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        border-bottom: 1px solid #e7dfd2;
    }

    /* ======= INFO CELL ======== */
    .window-info-cell {
        min-width: 0;
        min-height: 118px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 13px 9px;
        border-left: 1px solid #e7dfd2;
    }

    .window-info-cell:first-child {
        border-left: 0;
    }

    /* ==== ICON ======== */
    .info-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        flex: 0 0 34px;
        font-size: 14px;
    }

    /* ====== TEXT ========== */
    .info-content {
        min-width: 0;
    }

    .info-content h4 {
        margin: 0 0 4px;
        font-size: 10px;
        line-height: 1.2;
    }

    .info-content p {
        margin: 0;
        font-size: 10.5px;
        line-height: 1.4;
        word-break: normal;
        overflow-wrap: break-word;
    }
}


/* ============== SMALL MOBILE - 390px AND BELOW =========== */
@media (max-width: 390px) {

    .window-solutions-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .window-solutions-heading h2 {
        font-size: 24px;
    }

    .window-heading-line span {
        width: 48px;
    }

    .window-title-row {
        padding: 10px;
    }

    .window-title h3 {
        font-size: 18px;
    }

    .window-title p {
        font-size: 10px;
    }

    .window-title-row .window-consult-btn {
        font-size: 11px;
        padding: 10px 12px;
    }

    .window-image,
    .window-image img {
        height: 210px;
        min-height: 210px;
    }

    .window-column-title {
        font-size: 9px;
        padding: 7px 4px;
    }

    .window-column-title i {
        font-size: 12px;
    }

    .window-info-cell {
        min-height: 125px;
        padding: 11px 7px;
        gap: 6px;
    }

    .info-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        flex-basis: 30px;
        font-size: 12px;
    }

    .info-content h4 {
        font-size: 9px;
    }

    .info-content p {
        font-size: 9.5px;
        line-height: 1.35;
    }

}

/* aluminium & glass page css */

/* Common */
    .product-section {
        padding: 50px;
    }

    .aluminium-section {
        background: #f7f5ef;
    }

    .partition-section {
        background: #fff;
    }

    .product-hero {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,.05);
    }

    .product-content {
        padding: 30px;
    }

    .product-hero-img {
        height: 336px;
        object-fit: cover;
    }

    .product-number {
        display: inline-block;
        padding: 5px 8px;
        margin-bottom: 8px;
        background: #b99a62;
        color: #fff;
        font-size: 11px;
    }

    .product-content h2 {
        color: #0d4b3d;
        margin-bottom: 8px;
    }

    .product-content h6 {
        margin-bottom: 12px;
    }

    .product-content p,
    .product-card p,
    .product-card li,
    /*.benefit-card p*/ {
        color: #666;
        line-height: 1.5;
        margin-bottom: 0px;
    }

    .product-card h4,
    /*.benefit-card h5,*/
    .product-type-card h5 {
        color: #0d4b3d;
    }

    .product-card ul {
        padding-left: 18px;
    }

    .product-card li {
        margin-bottom: 8px;
    }

    /*.product-dark {
        background: #0d4b3d;
        border-color: #0d4b3d;
        color: #fff;
    }

    .product-dark h4,
    .product-dark p,
    .product-dark li,
    .product-dark small {
        color: #000;
    }
    .product-dark p{
            font-size: 15px;
            color: #000;
            margin-top: 10px;
    }
*/
    .product-heading {
        margin: 35px 0 15px;
    }

    .product-heading small {
        color: #b99a62;
        letter-spacing: 1.5px;
        font-size: 10px;
    }

    .product-heading h3 {
        color: #0d4b3d;
        font-size: 22px;
        margin: 3px 0;
    }

    .product-type-card {
        background: #fff;
        border: 1px solid #dedbd2;
        border-radius: 8px;
        overflow: hidden;
        height: 100%;
    }


    .product-type-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .product-type-card div {
        padding: 15px;
    }

    .product-type-card h5 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-type-card p {
        color: #666;
        margin: 0;
    }

    /*.benefit-card {
        text-align: center;
        padding: 25px 15px;
    }

    .benefit-card span {
        color: #b99a62;
        font-size: 25px;
        display: block;
        margin-bottom: 10px;
    }

    .benefit-card h5 {
        font-size: 14px;
    }*/

    /* Bottom Product Cards */
.product-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    line-height: 22px;
}

.product-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* Icon */
.card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(240, 96, 3, 0.10);
    color: #F06003;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(240, 96, 3, 0.25);
}

.product-card:hover .card-icon {
    background: #F06003;
    color: #fff;
    transform: rotate(5deg);
}

/* List spacing */
.product-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.product-card li {
    margin-bottom: 10px;
}

.product-card li:last-child {
    margin-bottom: 0;
}

/* Conclusion card */
.conclusion-card {
    background: linear-gradient(135deg, #fff, #f7fbfd);
}

/* ================================
   Partition Benefits
================================ */

.benefit-card {
    position: relative;
    padding: 15px 12px;
    background: #fff;
    border: 1px solid rgba(127, 179, 213, 0.22);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

/* Decorative architectural lines */
.benefit-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -65px;
    top: -65px;
    border: 1px solid rgba(127, 179, 213, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 18px rgba(127, 179, 213, 0.035),
        0 0 0 36px rgba(240, 96, 3, 0.025);
    pointer-events: none;
}

.benefit-card::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    right: -8px;
    bottom: 20px;
    background: rgba(240, 96, 3, 0.15);
    transform: rotate(-45deg);
    pointer-events: none;
}

/* Icon */
.benefit-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 10px;
    background: rgba(240, 96, 3, 0.09);
    color: #F06003;
    font-size: 21px;
    transition: all 0.35s ease;
}

/* Heading */
.benefit-card h5 {
    position: relative;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* Paragraph */
.benefit-card p {
    position: relative;
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
    font-size: 14px;
}

/* Hover */
.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 96, 3, 0.3);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.benefit-card:hover .benefit-icon {
    background: #F06003;
    color: #fff;
    transform: translateY(-2px);
}
.cd-projects-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(images/project-bg.jpg);
    background-size: contain;
    background-position: center;
    opacity: 0.80;
    pointer-events: none;
}
.our-services {
    background-image: url(images/service-bg-image.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
    padding: 60px 0 60px 0;
}

.pattern-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(127, 179, 213, 0.22);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

/* Large wavy lines */
.pattern-card::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 220px;
    right: -100px;
    bottom: -110px;

    background:
        radial-gradient(
            ellipse at center,
            transparent 52%,
            rgba(127, 179, 213, 0.12) 53%,
            transparent 54%
        );

    background-size: 70px 45px;
    transform: rotate(-12deg);
    pointer-events: none;
}

/* Decorative curved/orange line */
.pattern-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -150px;
    top: -150px;

    border: 2px solid rgba(240, 96, 3, 0.10);
    border-radius: 50%;

    box-shadow:
        0 0 0 20px rgba(240, 96, 3, 0.025),
        0 0 0 40px rgba(127, 179, 213, 0.025);

    pointer-events: none;
}

/* Keep content above pattern */
.pattern-card > * {
    position: relative;
    z-index: 2;
}

/* Heading */
.pattern-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-weight: 700;
}

/* Icon */
.pattern-card .card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(240, 96, 3, 0.09);
    color: #F06003;
    font-size: 19px;
    transition: all 0.35s ease;
}

/* Paragraph */
.pattern-card p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.75;
}

/* Hover */
.pattern-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 96, 3, 0.25);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.pattern-card:hover .card-icon {
    background: #F06003;
    color: #fff;
    transform: translateY(-2px);
}

/* end */

/*************************************************/



/*******************raw materials css******************************/

.cd-projects-section::before {
content: "";
position: absolute;
inset: 0;
background-image: url(images/project-bg.jpg);
background-size: contain;
background-repeat: repeat;
background-position: center;
opacity: 0.80;
pointer-events: none;
}

/*raw materials css*/

:root{
  --deep-green:#2E5D4E;
  --deep-green-dark:#204237;
  --deep-green-light:#3B7563;
  --orange:#FB5501;
  --orange-dark:#d64600;
  --steel:#7FB3D5;
  --steel-dark:#5f93b5;
  --paper:#F3F0E8;
  --paper-dark:#e8e3d4;
  --ink:#1c2b26;
  --line:rgba(46,93,78,0.16);
}

.materials-section{
  position:relative;
  padding:50px 0;
  background:
    linear-gradient(var(--paper), var(--paper));
  overflow:hidden;
}

.materials-inner{
  position:relative;
  max-width:1180px;
  margin:0 auto;
}

.mat-eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--deep-green);
  font-weight:600;
  margin-bottom:18px;
}
.mat-eyebrow::before{
  content:"";
  width:34px;height:2px;
  background:var(--orange);
  display:inline-block;
}

.mat-heading{
  font-family:'Archivo Expanded',sans-serif;
  font-weight:800;
  font-size:clamp(34px, 4.6vw, 56px);
  line-height:1.02;
  letter-spacing:-0.01em;
  color:var(--deep-green-dark);
  max-width:820px;
  margin:0 0 20px;
}
.mat-heading em{
  font-style:normal;
  color:var(--orange);
}

.mat-subline{
  font-size:17px;
  line-height:1.6;
  color:#3f5750;
  max-width:640px;
  margin:0 0 56px;
}

.mat-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:0;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 30px 70px -40px rgba(32,66,55,0.35);
}

.mat-tabs{
  position:relative;
  background:
    radial-gradient(120% 140% at 0% 0%, var(--deep-green-light) 0%, var(--deep-green) 42%, var(--deep-green-dark) 100%);
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.mat-tabs::after{
  content:"";
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size:100% 46px;
  pointer-events:none;
}

.mat-tab{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  gap:14px;
  text-align:left;
  padding:18px 16px;
  background:transparent;
  border:none;
  border-radius:6px;
  cursor:pointer;
  color:rgb(255 255 255);
  transition:background .22s ease, color .22s ease;
}
.mat-tab:hover{ background:rgba(255,255,255,0.06); color:#fff; }

.mat-tab-num{
  font-family:'JetBrains Mono',monospace;
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  color:rgb(255 255 255);
  padding-top:3px;
  min-width:20px;
  transition:color .22s ease;
}
.mat-tab-text{ display:flex; flex-direction:column; gap:4px; }
.mat-tab-title{
  font-family:'Archivo Expanded',sans-serif;
  font-weight:700;
  font-size:15.5px;
  letter-spacing:-0.01em;
  line-height:1.25;
}
.mat-tab-sub{
  font-size:12.5px;
  line-height:1.4;
  color:rgba(255, 255, 255, 0.62);
  max-width:180px;
}

.mat-tab.active{ background: rgb(255 255 255); }
.mat-tab.active .mat-tab-num { color: #000000; font-size: 20px; }
.mat-tab.active .mat-tab-title { color: #000000; font-size: 20px; }
.mat-tab.active .mat-tab-sub{ color: #f85b00; font-size: 14px; }
.mat-tab.active::before{
  content:"";
  position:absolute;
  left:-10px; top:10px; bottom:10px;
  width:3px;
  background:var(--orange);
  border-radius:2px;
}

/* --- content panel --- */
.mat-panels{
  position:relative;
  background:#fff;
}
.mat-panel{
  display:none;
  padding:52px 56px 44px;
}
.mat-panel.active{
  display:block;
  animation:matFade .4s ease;
}
@keyframes matFade{
  from{ opacity:0; transform:translateY(8px); }
  to{ opacity:1; transform:translateY(0); }
}

.mat-panel-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:28px;
  padding-bottom:12px;
  margin-bottom:10px;
  border-bottom:1px solid var(--line);
}
.mat-panel-kicker{
  font-family:'JetBrains Mono',monospace;
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--orange);
  font-weight:600;
  margin-bottom:10px;
  display:block;
}
.mat-panel-title{
  font-family:'Archivo Expanded',sans-serif;
  font-weight:800;
  font-size:28px;
  color:var(--deep-green-dark);
  margin:0 0 8px;
  letter-spacing:-0.01em;
}
.mat-panel-desc{
  font-size:15px;
  color:#51655d;
  max-width:480px;
  line-height:1.55;
  margin:0;
}

.mat-diagram{
  flex-shrink:0;
  width:250px;
  height:auto;
  border-radius:8px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background:linear-gradient(160deg, #eef2ee, #e2e9e3);
}

/* table */
.mat-table{
  width:100%;
  border-collapse:collapse;
  margin:26px 0 8px;
  font-size:14px;
}
.mat-table th{
  text-align:left;
  font-family:'JetBrains Mono',monospace;
  font-size:14px;
  letter-spacing:.08em;
  text-transform: capitalize;
  font-weight:600;
  color:#fff;
  background:var(--deep-green);
  padding:11px 16px;
}
.mat-table th:first-child{ border-radius:6px 0 0 0; }
.mat-table th:last-child{ border-radius:0 6px 0 0; }
.mat-table td{
  padding:10px;
  border-bottom:1px solid var(--line);
  vertical-align:middle;
  line-height:1.5;
  color:#33463f;
}
.mat-table tr:last-child td{ border-bottom:none; }
.mat-table td.mat-key{
  font-weight:700;
  color:var(--deep-green-dark);
  white-space:nowrap;
  width:1%;
}
.mat-table tbody tr:hover td{ background:#faf9f4; }

.mat-pillrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0 6px;
}

.mat-callout{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-top:26px;
  padding:16px 18px;
  background:#fbf6ee;
  border:1px solid #ecdfc4;
  border-left:3px solid var(--orange);
  border-radius:4px;
  font-size:13.5px;
  line-height:1.55;
  color:#5c4a2a;
}
.mat-callout strong{ color:var(--orange-dark); }

.mat-quote{
  margin:24px 0 4px;
  font-family:'Archivo Expanded',sans-serif;
  font-weight:700;
  font-size:20px;
  color:var(--deep-green-dark);
  padding:18px 22px;
  background:linear-gradient(120deg, rgba(46,93,78,0.06), rgba(127,179,213,0.08));
  border-radius:6px;
  position:relative;
}
.mat-quote::before{
  content:"❝";
  color:var(--orange);
  font-size:34px;
  line-height:0;
  position:relative;
  top:10px;
  margin-right:5px;
}
.mat-quote::after {
  content: "❞";
  color: var(--orange);
  font-size: 34px;
  line-height: 0;
  position: relative;
  top: 10px;
  margin-left: 5px;
}

/* mobile */
@media (max-width: 860px){
  .mat-layout{ grid-template-columns:1fr; }
  .mat-tabs{ flex-direction:row; overflow-x:auto; gap:6px; }
  .mat-tab{ min-width:200px; }
  .mat-tab.active::before{ left:6px; right:6px; top:auto; bottom:0; width:auto; height:3px; }
  .mat-panel{ padding:34px 22px 30px; }
  .mat-panel-head{ flex-direction:column; }
  .mat-diagram{ width:100%; height:110px; }
}
