
.advertising-category-section {
    padding-bottom: 10rem;
}

.advertising-title {
    color: #000000;
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
}

.advertising-desc {
    color: #000000;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
}

.advertising-main-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 0 15px;
}

.advertising-box {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 30px 20px;
    width: calc(15% - 30px);
    transition: transform 0.3s ease;
    border: 1px solid #ffcc01;
    height: 100%;
}

.advertising-box:hover {
    transform: translateY(-5px);
}

.advertising-icon img {
    max-width: 45px;
    margin-bottom: 15px;
}

.advertising-label {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 6px;
}

.advertising-box .advertising-small-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 6px;
}

/* Tablet: 3 per row */
@media (max-width: 992px) {
    .advertising-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .advertising-box {
        width: calc(50% - 20px);
    }
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
    .advertising-category-section {
        padding: 40px 0;
    }

    .advertising-box {
        width: calc(50% - 20px);
        height: unset;
    }

    .advertising-desc {
        color: #000000;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Extra Small Devices: 1 per row */
@media (max-width: 480px) {
    .advertising-main-box {
        justify-content: center;
        padding: 0;
        gap: 10px;
    }

    .advertising-box {
        margin-bottom: 10px;
        padding: 15px;
    }
}

/* Large Screens (1024px to 1820px): 6 per row */
@media (min-width: 1024px) and (max-width: 1820px) {
    .advertising-box {
        width: 18%;
        padding: 20px;
    }
}

/* Banner Start  */

.page-banner {
    position: relative;
    padding: 0;
    color: #ffffff;
    background: #000000;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-banner .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    -webkit-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
}

.page-banner .shape-1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    /* background: url(../img/b-shape-1.webp) right top no-repeat; */
    z-index: 1;
}

.page-banner .shape-2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    background: url(../img/b-shape-2.webp) right top no-repeat;
    z-index: 1;
     display: none;
}

.page-banner .banner-inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
}

.page-banner .inner-container {
    position: relative;
    padding: 240px 0px 240px;
}

.page-banner h1 {
    position: relative;
    font-size: 36px;
    color: #ffffff;
    line-height: 0.9em;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.page-banner .page-nav {
    position: relative;
    padding-top: 5px;
    text-align: center;
}

.page-banner .bread-crumb {
    position: relative;
    display: inline-block;
}

.page-banner .bread-crumb li {
    position: relative;
    float: left;
    font-size: 20px;
    line-height: 30px;
    color: #ccd6df;
    font-weight: 400;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    cursor: default;
    padding-right: 15px;
    margin-right: 15px;
    letter-spacing: 0.1em;
    font-family: var(--thm-font);
}

.page-banner .bread-crumb li:before {
    position: absolute;
    right: -15px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    content: "-";
}

.page-banner .bread-crumb li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.page-banner .bread-crumb li:last-child:before {
    display: none;
}

.page-banner .bread-crumb li a {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    font-weight: 400;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.page-banner .bread-crumb li a:hover,
.page-banner .bread-crumb li.active {
    color: var(--thm-base);
}

.page-banner .bread-crumb li {
    background-color: unset !important;
    list-style: none;
}

.page-banner .bread-crumb li a {
    text-decoration: none;
}

.page-banner .bread-crumb li.active a {
    color: #ffcc01;
}

.active,
.accordion:hover {
    color: #ffcc01 !important;
}

@media only screen and (max-width: 768px) {

    .page-banner h1 {
        font-size: 36px;
        line-height: 1.05em;
    }

    .page-banner .shape-1,
    .page-banner .shape-2 {
        display: none;
    }

    .page-banner .inner-container {
        padding: 180px 0px 50px;
    }

    .page-banner .bread-crumb li {
        font-size: 16px;
    }

    .page-banner .bread-crumb li a {
        font-size: 16px;
    }

    .page-banner .bread-crumb {
        padding-left: 0px !important;
    }
}

/* Banner End */


/* Service List Box Start  */

.services-section-two {
    position: relative;
    padding: 80px 0px 80px;
    background: #ffffff;
}

.services-section-two .sec-title {
    margin-bottom: 30px;
}

.services-section-two .sec-title .column {
    margin-bottom: 20px;
}

.services-section-two .sec-title .lower-text {
    padding-top: 0;
    margin-top: 0;
}

.services-section-two .services {
    position: relative;
    z-index: 2;
    margin-bottom: -100px;
}

.service-block-two {
    position: relative;
    margin-bottom: 30px;
}

.service-block-two .inner-box {
    position: relative;
    display: block;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    /* max-width: 270px; */
    border: 1px solid #000000;
    text-decoration: none;
}

.service-block-two .inner-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.service-block-two .inner-box:hover:before {
    background: #000000;
    /* bottom: -10px; */
}

.service-block-two .inner-box .bottom-curve {
    position: absolute;
    right: -70px;
    bottom: -10px;
    width: 120px;
    height: 120px;
    background: #ffffff;
    opacity: 0.1;
    z-index: 0;
    -webkit-transform: skewX(0deg) scaleX(0);
    transform: skewX(0deg) scaleX(0);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.service-block-two .inner-box:hover .bottom-curve {
    -webkit-transform: skewX(-45deg) scaleX(1);
    transform: skewX(-45deg) scaleX(1);
}

.service-block-two .inner-box .icon-box {
    position: relative;
    display: block;
    color: var(--thm-base);
    font-size: 64px;
    line-height: 1em;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.service-block-two .inner-box:hover .icon-box {
    color: var(--thm-base);
}

.service-block-two .inner-box h5 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--thm-black);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.1em;
    margin: 0;
    height: 70px;
    overflow: hidden;
}

.service-block-two .inner-box h5 {
    color: var(--thm-black);
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.service-block-two .inner-box:hover h5,
.service-block-two .inner-box:hover h5 {
    color: #ffffff !important;
    z-index: 2;
    position: relative;
}

.service-block-two .inner-box h5:hover {
    text-decoration: underline;
}

.service-block-two .text {
    position: relative;
    display: block;
    color: var(--thm-text);
    padding: 20px 0px 0px;
    z-index: 1;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
}

.service-block-two .inner-box:hover .text {
    color: #fff;
}

.service-block-two .link-box {
    position: absolute;
    right: 3px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.service-block-two .link-box a {
    position: relative;
    line-height: 30px;
    font-size: 20px;
    color: #ffffff;
}



.services-section-three {
    position: relative;
    padding: 0px 0px 90px;
    background: #ffffff;
}

.services-section-three.padd-top {
    padding-top: 120px;
}

.services-section-three .services {
    position: relative;
}

.services-section-three__one-page {
    position: relative;
    padding: 120px 0px 90px;
    background-color: #000;
    background-image: url(../images/background/contact-bg-1-1.png);
    background-size: cover;
    color: #999b9f;
}

.services-section-three__one-page .sec-title h2 {
    color: #fff;
}

.services-section-three__one-page .service-block-two .inner-box {
    overflow: hidden;
    background-color: #1c1e22;
}

.services-section-three__one-page .service-block-two .inner-box h5 a {
    color: #fff;
}

.services-section-three__one-page .service-block-two .inner-box .bottom-curve,
.services-section-three__one-page .service-block-two:hover .inner-box h5 a,
.services-section-three__one-page .service-block-two:hover .inner-box .icon-box,
.services-section-three__one-page .service-block-two:hover .text {
    color: var(--thm-black);
}

.services-section-three__one-page .service-block-two .link-box {
    opacity: 0;
    -webkit-transition: 500ms;
    transition: 500ms;
}

.services-section-three__one-page .service-block-two:hover .link-box {
    opacity: 1;
}

.services-section-three__one-page .service-block-two .inner-box:hover::before {
    background-color: var(--thm-base);
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-section-two {
        padding: 60px 0px;
    }

    .service-block-two .inner-box {
        max-width: 100%;
    }

    .service-grid {
        gap: 0px !important;
        margin-top: 0px !important;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}

/* Service List Box End */

/* Services Section Start */
.services-section {
    position: relative;
    padding: 80px 0 80px;
    background: #000000 url(../img/pattern-1.webp) center top repeat;
    color: #fff;
}

.services-section .sec-title {
    margin-bottom: 30px;
}

.services-section .sec-title h2 {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 55px;
    text-transform: uppercase;
    color: var(--thm-black);
    font-weight: 900;
    margin-bottom: 0px;
}

.services-section .sec-title .lower-text {
    color: #fff;
    position: relative;
    display: block;
    font-size: 21px;
    line-height: 2.125em;
    font-weight: 400;
    padding: 30px 0px 0px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Service Block Numbering */
.services-section .row {
    counter-reset: slides-num;
}

.services-section .service-block {
    counter-increment: slides-num;
    margin-bottom: 30px;
    position: relative;
}

/* .services-section .service-block .inner-box::before {
    content: "0" counter(slides-num);
    position: absolute;
    top: 50px;
    left: 45px;
    font-size: 50px;
    color: #fff;
    opacity: 0.07;
    font-weight: 300;
    z-index: 1;
} */
.service-block .counter {
    position: absolute;
    top: 50px;
    left: 45px;
    font-size: 50px;
    color: #fff;
    opacity: 0.07;
    font-weight: 300;
    z-index: 1;
}

.service-block .inner-box:hover .counter {
    color: #000;
}

/* Inner Box */
.service-block .inner-box {
    background: #1c1e22;
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    min-height: 100%;
    /* max-width: 270px; */
    z-index: 2;
}

.service-block .inner-box:hover {
    background: #fff;
}

.service-block .inner-box .bottom-curve {
    position: absolute;
    bottom: 0;
    right: -70px;
    width: 100px;
    height: 80%;
    background: #000000;
    opacity: 0.2;
    transform: skewX(0deg) scaleX(0);
    transition: all 0.5s ease;
    z-index: 0;
}

.service-block .inner-box:hover .bottom-curve {
    transform: skewX(-35deg) scaleX(1);
}

/* Icon Box */
.service-block .icon-box {
    position: absolute;
    top: 50px;
    right: 45px;
    font-size: 64px;
    color: var(--thm-base);
    transition: all 0.5s ease;
    z-index: 2;
}

.service-block .inner-box:hover .icon-box {
    color: var(--thm-black);
}

/* Heading */
.service-block h6 {
    margin-top: 90px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.1em;
}

.service-block h6{
    color: #fff;
    transition: all 0.5s ease;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.service-block h6:hover {
    text-decoration: underline;
}

/* On Hover Text Color */
.service-block .inner-box:hover::before,
.service-block .inner-box:hover .count,
.service-block .inner-box:hover h6,
.service-block .inner-box:hover h6 a {
    color: #000;
}

/* Extra Layout Option (if needed) */
.service-block-three {
    padding-top: 90px;
}

.service-block-three__single {
    margin-top: 30px;
    background: #eff1f4;
    padding: 50px;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}

.service-block-three__single:hover {
    background: var(--thm-base);
}

.service-block-three__single .icon-box span {
    font-size: 64px;
    margin-right: 40px;
    color: var(--thm-base);
    transition: all 0.5s ease;
}

.service-block-three__single:hover .icon-box span {
    color: #fff;
}

.service-block-three__single h6 {
    font-size: 20px;
    font-weight: bold;
    color: var(--thm-black);
    text-transform: capitalize;
    line-height: 34px;
    transition: all 0.5s ease;
}

.service-block-three__single:hover h6 {
    color: #fff;
}

.service-block-three__single h6 a {
    color: inherit;
}

.services-section .title-block {
    width: 50%;
}

.first-right-box {
    width: 25%;
}

.first-flex {
    display: flex;
    gap: 25px;
}

.services-section .sec-title h2 .dot {
    color: #fecc00;
}

/* @media (min-width: 768px) and (max-width: 1px) {
    .first-flex {
    gap: 30px;
}
} */

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0px;
    }

    .first-flex {
        display: block;
    }

    .services-section .title-block {
        width: 100%;
    }

    .services-section .sec-title h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .services-section .sec-title .lower-text {
        font-size: 16px;
        line-height: 25px;
        padding: 20px 0px 0px;
    }

    .service-block .inner-box {
        min-height: 100%;
        max-width: 100%;
    }

    .first-right-box {
        width: 100%;
    }
}


/* Services Section End */

/* Fourth Section Start  */

/* Section Layout */
.industries-section {
    padding: 80px 0px;
    background: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.industries-section h2 {
    position: relative;
    display: block;
    font-size: 44px;
    line-height: 55px;
    text-transform: uppercase;
    color: var(--thm-black);
    font-weight: 600;
    margin-bottom: 50px;
}


/* Tabs */
.tab-buttons {
    text-align: start;
    margin-bottom: 30px;
}

.tab-btn {
    display: inline-block;
    padding: 25px 20px;
    background-color: #f3f3f3;
    width: 32.333%;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    font-size: 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tab-btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, #1d1d1d 0%, #000000 100%);
    transition: all 0.3s ease;
    z-index: 0;
}


.tab-btn.active::before {
    height: 100%;
}

.tab-btn.active .tab-btn span {
    color: #fff !important;
}

.tab-btn span {
    position: relative;
    display: block;
    z-index: 1;
}

/* Tab Content */
.tab-content .tab-pane {
    display: none;
}

.tab-content .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
    background-color: unset !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Content Row */
.content-row {
    display: flex;
    gap: 30px;
}

.image-col {
    flex: 1 1 28.666667%;
    text-align: start;
}

.image-col img {
    border-radius: 8px;
    filter: grayscale(100%);
}

.text-col {
    flex: 1 1 71.3333333333%;
}

.text-col p {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
    text-align: start;
    line-height: 1.6;
}

.text-col .highlight {
    color: #FECC00;
    font-weight: 600;
}

/* Feature List with Tick */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    line-height: 1.4;
    text-align: start;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background: url('../img/checkmark.png') no-repeat center center;
    background-size: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .industries-section {
        padding: 40px 0px;
        margin-bottom: 0px;
    }

    .content-row {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        margin: 5px 0;
    }

    .industries-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .image-col img {
        width: 100%;
    }

}

/* Fourth Section End  */

/* Fifth Section Start  */
.call-to-section-two {
    position: relative;
    padding: 120px 0px 90px;
    background-color: #2a2c30;
    background-image: url('../img/cta-2-bg-1-1.webp');
    color: #ffffff;
    z-index: 1;
}

.call-to-section-two.alternate {
    background: #FECC00;
    background-image: url('../img/cta-2-bg-1-1.webp');
}

.call-to-section-two .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-to-section-two h2 {
    position: relative;
    display: block;
    font-size: 31px;
    line-height: 50px;
    text-transform: uppercase;
    color: #000;
    font-weight: 900;
    margin: 0px 0px 25px;
    z-index: 1;
}


.call-to-section-two .link-box {
    position: relative;
    float: right;
    padding-top: 25px;
    z-index: 1;
}

/* call to section three */
.call-to-section-three {
    background-color: var(--thm-base);
    padding-top: 119px;
    padding-bottom: 119px;
}

.call-to-section-three .jarallax-img {
    mix-blend-mode: luminosity;
    opacity: 0.1;
}

.call-to-section-three .auto-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.call-to-section-three .auto-container h3 {
    margin: 0;
    font-size: 50px;
    font-weight: 800;
    color: #fff;
}

.call-to-section-three .auto-container .btn-style-three {
    min-width: 220px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    color: var(--thm-black);
}

.call-to-section-three .auto-container .btn-style-three:hover {
    background-color: var(--thm-black);
    color: #fff;
}

.black-background {
    background: #000 !important;
}

.black-background .cb-btn_cta-border {
    border: 1px solid transparent !important;
}

@media (max-width: 768px) {
    .call-to-section-two {
        padding: 80px 0px 70px;
    }

    .call-to-section-two .inner {
        flex-direction: column;
    }

    .call-to-section-two h2 {
        font-size: 21px;
        line-height: 32px;
        text-align: center;
    }
}

/* Fifth Section End  */

/* Second Theme Start -------------------------  */

/* Banner Start  */

.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 40px 0 -0.5em 0;
    list-style-type: none;
    position: relative
}

.breadcumb-menu li {
    display: inline-block;
    margin-right: 3px;
    padding-right: 5px;
    list-style: none;
    position: relative;
}

.breadcumb-menu li a:hover {
    color: var(--theme-color)
}

.breadcumb-menu li::after {
    content: '';
    display: inline-block;
    background: url('../img/fast-forward-double-right-arrows-symbol.png') no-repeat center center;
    background-size: contain;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    vertical-align: middle;
}

.breadcumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
    color: #fff;
}

.breadcumb-menu li:last-child:after {
    display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
    white-space: normal;
    word-break: break-word;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.breadcumb-title {
    color: #fff;
    margin: -0.05em 0 -0.3em 0;
    line-height: 1.1;
    font-weight: 700;
    font-size: 68px;
    text-align: center;
}

.breadcumb-wrapper {
    background-color: var(--title-color);
    padding: calc(110px + 145px) 0 145px 0;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.breadcumb-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* black with 80% opacity */
    z-index: 2;
}

.breadcumb-wrapper:before {
    z-index: -1
}

.breadcumb-content {
    text-align: center;
}

@media (max-width: 991px) {
    .breadcumb-wrapper {
        padding: calc(84px + 120px) 0 120px 0
    }
}

@media (max-width: 767px) {
    .breadcumb-wrapper {
        padding: calc(84px + 100px) 0 100px 0
    }
}

@media (max-width: 575px) {
    .breadcumb-title {
        font-size: 34px
    }

    .breadcumb-wrapper {
        padding: calc(74px + 100px) 0 100px 0
    }
}

/* Banner End */


/* Second Section Start  */
.services-second-theme {
    position: relative;
    padding: 80px 0 80px;
    background-color: #fff;
}

.services-second-theme .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FECC00;
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}

.working-box:before {
    content: '';
    position: absolute;
    left: 50%;
    top: -3px;
    width: 12px;
    height: 10px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-top: solid 10px #000;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.process-card_icon img {
    padding-top: 15px;
    margin-top: 15px;
}

.services-second-theme .section-title h2 {
    font-size: 38px;
    color: #111;
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Individual Service Box */
.service-box {
    position: relative;
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    background-color: #000;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: 0.4s;
    border: 3px solid transparent;
    z-index: 1;
}

.service-wrap {
    display: flex;
    gap: 30px;
}

.service-box:hover {
    border: 3px solid #FECC00;
}

.service-box:hover .read-more,
.service-box:hover h3 a {
    color: #FECC00;
}

.service-box .icon {
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.service-box h3 a {
    text-decoration: none;
    color: inherit;
    font-size: 29px;
    font-weight: 600;
}

.service-box p {
    font-size: 19px;
    margin-bottom: 15px;
    color: #fff;
    line-height: 25px;
}

.service-box .read-more {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
    position: relative;
}

.service-box .read-more::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('../img/top-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-box:hover .read-more {
    color: #FECC00;
}

.service-box:hover .read-more::before {
    opacity: 1;
    left: -20px;
    /* Slide in effect from left */
}

.service-wrap_bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: 0.4s;
    pointer-events: none;
    z-index: 2;
}

/* Yellow Glow Circle (Initially Hidden) */
.service-wrap_bg::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 325px;
    width: 325px;
    border-radius: 50%;
    background: #FECC00;
    filter: blur(150px);
    opacity: 0;
    transform: translate(50%, 50%) scale(0);
    transition: 0.4s;
}

/* Show Yellow Glow on Hover */
.service-box:hover .service-wrap_bg::after {
    opacity: 0.4;
    transform: translate(50%, 50%) scale(1);
}

@media (max-width: 768px) {
    .services-second-theme {
        padding: 60px 0px;
    }

    .services-second-theme .section-title h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .section-title .subtitle {
        font-size: 21px;
    }

    .service-box {
        padding: 30px;
    }

    .service-wrap {
        flex-direction: column;
    }

    .service-box .icon {
        margin-bottom: 0px;
    }

    .service-box h3 a {
        font-size: 21px;
    }

    .service-box p {
        font-size: 16px;
    }

    .service-box .read-more {
        margin-left: 20px;
    }
}

/* Second Section End*/

/* Third Section End*/

.featured-slider-section {
    position: relative;
    background-color: #FECC00;
    padding: 30px 0;
    overflow: hidden;
}

.featured-slider-container {
    width: 100%;
    overflow: hidden;
}

.featured-slider-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.featured-slider-group {
    display: flex;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 40px;
    font-weight: 600;
    white-space: nowrap;
}

.featured-item img {
    width: 24px;
    height: 24px;
}

.featured-item span {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-item {
        margin: 0 20px;
    }

    .featured-item img {
        width: 20px;
        height: 20px;
    }

    .featured-item span {
        font-size: 18px;
    }
}

/* Third Section End*/


/* Fourth Section Start  */

.seo-techniques-section {
    background-color: #fff;
    padding: 80px 0px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seo-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #FECC00;
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 10px;
}

.seo-title {
    font-size: 38px;
    color: #000;
    font-weight: 600;
    margin-bottom: 30px;
}

.seo-video-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    background-color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease;
}

.play-button::before,
.play-button::after {
    content: "";
    position: absolute;
    border: 2px solid #ffffff;
    border-radius: 50%;
    top: 50%;
    background-color: #fff;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 1.5s infinite ease-out;
    opacity: 0.6;
}

.play-button::after {
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

/* Optional: Scale on hover */
.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}


.seo-right .seo-service-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    gap: 15px;
    border-bottom: 1px solid #000;
    transition: border-color 0.3s ease;
}

/* Animated yellow border */
.seo-right .seo-service-box::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #FECC00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* On hover: remove black border, animate yellow */
.seo-right .seo-service-box:hover {
    border-color: transparent;
}

.seo-right .seo-service-box:hover::after {
    transform: scaleX(1);
}


.seo-icon {
    font-size: 18px;
    color: #ffffff;
    margin-top: 5px;
}

.seo-icon {
    height: 35px;
    width: 35px;
    line-height: 40px;
    background: transparent;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-icon img {
    height: 20px;
    width: 20px;
}

.seo-service-title {
    font-size: 21px;
    line-height: 1.417;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.seo-content p {
    font-size: 16px;
    color: #000;
    margin-bottom: 8px;
    line-height: 25px;
}

.seo-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    position: relative;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.seo-read-more::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('../img/top-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FECC00;
}

.seo-service-box:hover .seo-read-more {
    color: #FECC00;
}

.seo-service-box:hover .seo-read-more::before {
    opacity: 1;
    left: -20px;
}

.seo-right .seo-service-box:hover .seo-icon {
    background-color: #FECC00;
    border-color: #FECC00;
    transition: all 0.3s ease;
}

.seo-read-more:hover {
    color: #00c4ff;
}

.seo-right .seo-service-box:hover {
    border-bottom: 1px solid #FECC00;
}

@media (max-width: 768px) {
    .seo-techniques-section {
        padding: 40px 0px;
    }

    .seo-video-box img {
        width: 100%;
    }

    .play-button img {
        max-width: 24px;
    }

    .seo-subtitle {
        font-size: 21px;
    }

    .seo-title {
        font-size: 24px;
        line-height: 36px;
    }

    .seo-read-more {
        margin-left: 20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Fourth Section End  */

/* Fifth Section End  */

.working-process-section {
    padding-bottom: 80px;
    background-color: #fff;
}

.working-process-section .cb-overview-container.-lg {
    position: relative;
    overflow: hidden;
}

.working-process-section .process-line {
    position: absolute;
    left: 0;
    top: 130px;
    width: 100%;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    height: 1px;
    background: #363739;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.section-title p {
    font-size: 18px;
    color: #666;
    margin-top: 10px;
}

.working-process-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.working-box {
    background: #fff;
    flex: 1 1 calc(25% - 30px);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.working-box:hover::before {
    border-top-color: #FECC00;
    /* arrow color on hover */
}

.step-count {
    text-align: center;
    z-index: 2;
    font-size: 80px;
    font-weight: 700;
    -webkit-text-stroke: 0.1px #000;
    margin-bottom: 36px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: transparent
}

.working-box:hover .step-count {
    color: #FECC00;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: #000;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .working-process-section .process-line {
        display: none;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .working-box {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .working-box {
        flex: 1 1 100%;
        border-bottom: 1px solid #000;
        padding-bottom: 30px;
    }

    .working-box:before {
        top: -30px;
    }

    .working-box:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .step-title {
        font-size: 20px;
    }
}

/* Fifth Section End  */

/* sixth Section End  */

.second-call-to-action {
    position: relative;
    padding: 120px 0px 90px;
    background: #FECC00;
}

.second-call-to-action .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.second-call-to-action h2 {
    position: relative;
    display: block;
    font-size: 48px;
    line-height: 55px;
    text-transform: uppercase;
    color: #000;
    font-weight: 900;
    margin: 0px 0px 25px;
    z-index: 1;
}

@media (max-width: 768px) {
    .second-call-to-action {
        padding: 50px 0px;
    }

    .second-call-to-action .inner {
        flex-direction: column;
    }

    .second-call-to-action h2 {
        font-size: 31px;
        line-height: 40px;
        text-align: center;
    }
}

/* sixth Section End  */

/* Second Theme Start -------------------------  */

/* About Us Page Start  */

.about-overview {
    padding: 80px 0;
    background-color: #fff;
}

.about-box-wrapper {
    display: flex;
    gap: 85px;
    justify-content: center;
}

.about-box {
    position: relative;
}

.about-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
    filter: grayscale(0%) brightness(0.9);
    border-radius: 6rem;
}

.about-box:hover img {
    filter: grayscale(100%);
    transform: scale(1.05);
}

.about-box-content {
    position: absolute;
    bottom: 20px;
    left: -50px;
    background-color: #ffcc01;
    padding: 40px 80px 36px 40px;
    max-width: 330px;
    color: #000;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 25px;
    margin: 0;
    border-radius: 3rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-box:hover .about-box-content {
    background-color: #000;
    color: #fff;
}

.about-arrow {
    position: absolute;
    right: 12px;
    bottom: 50%;
    transform: translateY(50%);
    width: 15px;
    height: 15px;
    background-image: url('../img/right-arrow.png');
    /* your arrow image path */
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.main-circle {
    position: absolute;
    right: 15px;
    bottom: 35%;
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
}

.about-box:hover .main-circle {
    background-color: #ffcc01;
}

@media (max-width: 768px) {
    .about-box {
        width: 100%;
        height: auto;
    }

    .about-box img {
        height: auto;
    }

    .about-box-content {
        padding: 30px 80px 30px 20px;
        font-size: 15px;
        left: 5px;
    }

    .main-circle {
        bottom: 25%;
    }
    .about-box-wrapper{
        flex-wrap: wrap;
    }
    .about-overview{
        padding: 40px 0;
    }
}

.testimonial-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.section-title span {
    color: #ffcc01;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 6rem;
    padding: 60px 60px 50px;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    min-height: 400px;
}

.testimonial-card:hover {
    background-color: #ffcc01;
}

.testimonial-card:hover .testimonial-role {
    color: #000;
}

.testimonial-card:hover .quote-mark {
    color: #000;
}

.testimonial-carousel.owl-carousel.owl-drag .owl-item {
    background: #ffffff !important;
}

.testimonial-img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-name {
    display: block;
    font-size: 18px;
    line-height: 1.2em;
    letter-spacing: 0.05em;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 16px;
    color: #ffcc01;
    display: block;
    font-weight: 500;
    margin-bottom: 15px;
}
.testi-person-desc .stars{
    display: flex;
    gap: 3px;
}
.testimonial-card:hover .stars img{
    filter: grayscale(100%) brightness(0);
}
.testimonial-role .stars img {
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.testimonial-content p {
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.quote-mark {
    font-size: 90px;
    color: #ffcc01;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Owl dots color change */
.owl-dots .owl-dot span {
    background: #ccc;
    transition: background 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: #ffcc01;
}

.testimonial-content .testi-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0px 0px 0px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .testimonial-card {
        padding: 50px 25px 40px;
        margin: 0px 15px 20px 15px;
    }
}

.about-counter {
    background-color: #000;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.counter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1 1 200px;
    min-width: 180px;
}

.counter {
    font-size: 48px;
    font-weight: bold;
    color: #ffcc01;
    /* Your main accent color */
}

.plus {
    font-size: 32px;
    font-weight: bold;
    color: #ffcc01;
}

.counter-box p {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.banner-inner .icon-box {
    position: relative;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background-color: #ffcc01;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-inner .icon-box:before {
    content: "";
    position: absolute;
    left: -7px;
    top: 0;
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
}
.new-inner-container {
    padding: 120px 0px;
    position: relative;
}

.banner-inner .content-box {
    position: relative;
    max-width: 870px;
    margin: 0 auto;
}

.banner-inner .content-box h2 {
    position: relative;
    display: block;
    font-size: 46px;
    line-height: 1.3em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 0px;
}

.banner-inner .content-box h2 span {
    color: #ffcc01;
}

@media (max-width: 768px) {
    .banner-inner .content-box h2 {
        font-size: 24px;
        line-height: 1.3em;
    }

    .new-inner-container {
        padding: 80px 0px;
    }
    .about-counter{
        padding: 40px 0;
    }
    .counter-box{
        margin-bottom: 20px;
    }
}

.about-section {
    background: #f7f7f7;
    padding: 60px 0px;
}

.about-container {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.about-left,
.about-right {
    flex: 1 1 500px;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    color: #222;
}

.dot {
    color: #ffcc01;
}

.about-tabs {
    margin: 20px 0;
    text-align: center;
}

.tab-item {
    border: none;
    background: #f2f2f2;
    font-weight: bold;
    margin-right: 10px;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.3s;
}

.tab-item.active {
    background: #ffcc01;
    color: #fff;
}

.tab-contents {
    margin-top: 15px;
}

.tab-content {
    display: none; /* hide all by default */
    padding: 15px;
    background: #fff;
}

.tab-content.active {
    display: block;
}
.about-desc {
    color: #666;
    line-height: 1.6;
}

.about-text {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 34px;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-image {
    margin-bottom: 20px;
}

.about-image img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
}

.about-list {
    list-style: none;
    padding: 0px 0px 0px 30px;

}

.about-list li {
    margin-bottom: 15px;
    color: #000;
    font-size: 16px;
}

.check {
    color: #ffcc01;
    font-weight: bold;
    margin-right: 10px;
}

.about-section .about-left .section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #000000;
}

.about-tabs .tab-item.active {
    color: #fff !important;
    background-color: #ffcc01;
    color: #000 !important;
}

.about-tabs .tab-item {
    border-top: 2px solid #ffcc01;
    font-size: 14px;
    border-radius: 3px;
    padding: 14px 40px 11px;
    text-transform: uppercase;
}

.about-left .tab-content.active {
    background-color: transparent;
    color: #000 !important;
    border: none;
}

.about-left .tab-content {
    position: relative;
    color: #000;
    font-size: 16px;
    line-height: 34px;
}

.about-circle-flex {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0px;
    }

    .about-section .about-left .section-title {
        font-size: 24px;
        margin-bottom: 15px
    }

    .about-tabs .tab-item {
        display: block;
        width: 100%;
        margin: 0 0 15px;
    }
    .about-container{
        gap: 30px;
    }
    .about-circle-flex{
       flex-direction: column;
    }
    .about-image img{
        width: 100%;
        height: 100%;
    }
    .about-list{
        padding: 0;
    }
    .about-left .tab-content{
       line-height: 25px;
    }
}
/* Container & Title */
.team-section {
  padding: 80px 0px;
  text-align: center;
  background: #fff;
}
.section-title .dot {
  color: #ffcc01;
}

/* Grid Layout */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.team-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.team-image .testi-user-image {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.team-image:hover .testi-user-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Social Icons Overlay */
.social-links {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: 0.4s ease;
}

.social-links a {
  background: #fff;
  color: #000;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: #ffcc01;
  color: #fff;
}

.team-image:hover .social-links {
  opacity: 1;
  bottom: 30px;
}

/* Name & Role */
.team-member h3 {
  font-size: 19px;
  margin-top: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 16px;
  color: #777;
  font-weight: 600;
}

.social-links img{
    max-width: 20px;
}

.clients-section {
  background: #fff;
  padding-bottom: 80px;
}

.clients-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1200px;  */
  margin: auto;
}

.clients-title {
  flex: 1 1 300px;
}

.clients-title h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}

.clients-title .dot {
  color: #ffcc01;
}

.clients-logos {
    flex: 2 1 500px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
    gap: 20px; /* space between logos */
    align-items: center;
    justify-items: center;
}


.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.core-features {
    position: relative;
    padding: 60px 0px;
    background-color: #fff;
     z-index: 0;
}

.core-features .about-flex {
    display: flex;
    gap: 40px;
    margin: auto;
    align-items: center;
}

.features-text {
    flex: 1 1 500px;
}

.features-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}

.features-text .dot {
    color: #ffcc01; /* Yellow dot */
}

.about-us-desc .about-text,
.goal-desc .about-text {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #222;
}

.features-image {
    flex: 1 1 500px;
    position: relative;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 6rem;
}

.features-image .image-text {
    position: absolute;
    bottom: 20px;
    left: 40px;
    background-color: #ffcc01;
    color: #222;
    padding: 12px 18px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .core-features .about-flex {
        flex-direction: column;
    }

    .features-image {
        flex: none;
    }
    .core-features{
        padding: 40px 0px;
    }
    .clients-title h2{
        font-size: 24px;
        margin-bottom: 20px;
    }
}
.about-box-link{
    text-decoration: none;
} 
   
.our-mission {
    width: 100%;
    padding: 0;
    margin: 0;
}

.mission-flex {
    display: flex;
    width: 100%;
    min-height: 450px;
}

.goal-section {
    flex: 0 0 65%;
    background-color: #ffcc01;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-mission h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}

.goal-section .dot {
    color: #fff;
}

.goal-desc {
    font-size: 16px;
    line-height: 1.6;
}

.mission-image {
    flex: 0 0 35%;
    background-color: #000; /* Yellow background for right side */
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    max-width: 90%;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 6rem;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .mission-flex {
        flex-direction: column;
    }
    .goal-section,
    .mission-image {
        flex: 1 1 100%;
        padding: 30px;
    }
    .image-wrapper{
        max-width: 100%;
    }
}

.core-features::after{
    transform: translateX(10px);
    position: absolute;
    right: -100px;
    top: -45px;
    content: "";
    height: 100%;
    width: 40%;
    background: url(../img/yellow-about-us.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.histrory-intro{
    text-align: center;
}
.history-intro{
    text-align: center;
    padding: 30px 0px;
    background-color: #ffcc01;
    font-size: 24px;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .core-features::after{
        display: none;
    }
    .history-intro{
        font-size: 19px;
        line-height: 30px;
        margin: 0px 0px 25px 0px;
    }
}

/* About Us Page Finish  */





.industry-section {
            padding: 120px 0;
            background: radial-gradient(at top left, #FFB921 0%, #000000 37%);
        }
 
        .industry-title {
            color: #ffffff;
            font-size: 42px;
            line-height: 42px;
            margin-bottom: 60px;
            font-weight: 500;
            text-align: center;
        }
 
        .industries-main-box {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            padding: 0 15px;
        }
 
        .industries-box {
            text-align: center;
            width: calc(20% - 30px);
            /* 5 per row with 30px gap */
            min-width: 150px;
            max-width: 180px;
            box-sizing: border-box;
            margin-bottom: 35px;
        }
 
        .industries-box .industry-icon img {
            max-width: 60px;
            margin-bottom: 20px;
        }
 
        .industries-box .Industry-title {
            color: #ffffff;
            font-size: 16px;
            line-height: 22px;
            margin-top: 5px;
        }
 
        /* Responsive: 3 per row on tablets */
        @media (max-width: 992px) {
            .industries-box {
                width: calc(33.33% - 30px);
            }
 
            .industry-title {
                font-size: 26px;
                text-align: center;
                margin-bottom: 45px;
            }
        }
 
        /* Responsive: 2 per row on small devices */
        @media (max-width: 768px) {
            .industry-section {
                padding: 30px 0px;
            }
 
            .industry-section .cb-overview-grid {
                flex-direction: column;
            }
        }
 
        /* Responsive: 1 per row on extra small devices */
        @media (max-width: 480px) {
            .industries-box {
                width: 50%;
                max-width: 130px;
                min-width: unset !important;
            }
 
            .industries-main-box {
                justify-content: center;
                gap: 20px;
            }
        }
 
        @media (min-width: 1024px) and (max-width: 1820px) {
            .industries-box {
                width: calc(14% - 30px) !important;
                min-width: unset !important;
                max-width: unset !important;
            }
        }
        
        @media (max-width: 768px) {
    .quote-mark{
        font-size: 50px;
    }
}