/* =========================================
   tj-about-section Custom Styles
   mystyle.css
   ========================================= */

html,
body {
    overflow: visible !important;
    overflow-x: hidden !important;
    height: auto !important;
    scrollbar-width: auto !important;
}

body::-webkit-scrollbar {
    display: block !important;
    width: 6px !important;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
}

body::-webkit-scrollbar-thumb {
    background: var(--theme-color) !important;
    border-radius: 10px !important;
}


@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: floating 2.5s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 2.5s ease-in-out infinite;
}

.tj-about-section {
    background-color: var(--white-color);
    padding-top: 140px;
    padding-bottom: 140px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    --br-bottom-left: 300px;
}

.tj-about-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0 0 var(--br-bottom-left) 0;
    z-index: -1;
    /* background: linear-gradient(120deg, #780004 0%, #e31e24 50%, #780004 100%); */
    transition: none;
}

.tj-about-section .sec-heading {
    margin-bottom: 0px;
    max-width: 585px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.tj-about-section .about-left-content .sec-heading {
    margin-left: 0;
}

/* --- Background Shapes --- */
.tj-about-section .about-bg-images .about-shape-1 {
    position: absolute;
    max-width: 745px;
    width: 100%;
    height: 676px;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    mask-image: url(../images/shapes/about-mark-1.svg);
    -webkit-mask-image: url(../images/shapes/about-mark-1.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

@media screen and (min-width: 1200px) {
    .tj-about-section .about-bg-images .about-shape-1 {
        width: 700px;
        height: auto;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .tj-about-section .about-bg-images .about-shape-1 {
        width: 500px;
        height: auto;
    }
}


.tj-about-section .about-bg-images .about-shape-1 img {
    height: 100%;
    object-fit: contain;
    max-width: 97%;
}

.tj-about-section .about-bg-images .about-shape-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 187px;
    width: 100%;
    height: 185px;
    position: absolute;
    top: -1px;
    left: 35%;
    mask-image: url(../images/shapes/about-mark-2.svg);
    -webkit-mask-image: url(../images/shapes/about-mark-2.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    background: var(--white-color);
    mask-position: center;
    -webkit-mask-position: center;
    ;
}



.rotate {
    animation: spin 2s linear infinite;
}

.tj-about-section .about-bg-images .about-shape-2 img {
    max-width: 74%;
    margin-top: 20px;
    /* animation: spin 10s linear infinite; */
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tj-about-section .about-bg-images .about-shape-3 {
    position: absolute;
    left: 39%;
    bottom: 2%;
    max-width: 200px;
    width: 100%;
    z-index: -1;
}

/* --- Description Text --- */
.tj-about-section .about-left-content .desc {
    max-width: 540px;
    width: 100%;
    margin-bottom: 30px;
    font-family: var(--body-font);
    color: var(--body-color);
}

.tj-about-section .about-left-content .desc p:last-child {
    margin-bottom: 0;
}

/* --- Feature Item --- */
.tj-about-section .about-feature-item {
    display: flex;
    max-width: 570px;
    width: 100%;
}

.tj-about-section .about-feature-item .feature-box {
    padding-top: 30px;
    padding-right: 56px;
    border-radius: 30px !important;
    background: linear-gradient(120deg, #ad0f14 0%, #e31e24 50%, #a30f14 100%);
    margin-right: 44px;
    border-right: 1px solid var(--th-border-color);
}

.tj-about-section .about-feature-item .feature-box:last-child {
    border-right: none;
    margin-right: 0;
}

.tj-about-section .about-feature-item .about-button {
    margin-top: 40px;
}

/* --- Check List --- */
.tj-about-section .check-list-one ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tj-about-section .check-list-one ul li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-family: var(--title-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
    color: var(--white-color);
}

.tj-about-section .check-list-one ul li:last-child {
    margin-bottom: 0;
}

.tj-about-section .check-list-one ul li i {
    font-size: 22px;
    margin-top: 2px;
    color: var(--white-color);
}

/* --- Client Experience / Thumbs --- */
.tj-about-section .client-experience .images-thumb {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 20px;
}

.tj-about-section .client-experience .images-thumb li {
    position: relative;
    max-width: 50px;
    width: 100%;
    background-color: var(--white-color);
    border-radius: 50%;
    margin-left: -18px;
    z-index: 2;
}

.tj-about-section .client-experience .images-thumb li:first-child {
    margin-left: 0;
}

.tj-about-section .client-experience .images-thumb li img {
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px;
    filter: grayscale(1);
}

.tj-about-section .client-experience .images-thumb li.plus {
    background-color: var(--white-color);
    padding: 3px;
    max-width: 50px;
    width: 100%;
}

.tj-about-section .client-experience .images-thumb li.plus i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 13px;
    line-height: 1;
    color: black;
    background: var(--white-color);
    border-radius: 50%;
}

/* --- Funfact Counter --- */
.tj-about-section .funfact-item-one .number {
    display: flex;
    align-items: center;
    font-size: 48px;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 4px;
    line-height: 1;
    font-family: var(--title-font);
}

.tj-about-section .funfact-item-one .number .odometer {
    font-family: var(--title-font);
    line-height: 1;
    display: inline-block;
}

.tj-about-section .funfact-item-one .sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--white-color);
}

/* --- Section Heading Text --- */
.tj-about-section .sec-heading .sub-title {
    font-family: var(--title-font);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.tj-about-section .sec-heading .sec-title {
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 500;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* --- Button --- */
.tj-about-section .tj-primary-btn {
    display: inline-block;
    background-color: var(--theme-color2);
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--title-font);
    transition: all 0.3s;
}

.tj-about-section .tj-primary-btn:hover {
    background-color: var(--title-color);
    color: var(--white-color);
}

.tj-about-section .tj-primary-btn .btn_inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tj-about-section .tj-primary-btn .btn_icon {
    display: inline-flex;
    overflow: hidden;
    height: 1em;
}

.tj-about-section .tj-primary-btn .btn_icon span {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease-in-out;
}

.tj-about-section .tj-primary-btn:hover .btn_icon span {
    transform: translateY(-50%);
}

/* =========================================
   Responsive Breakpoints
   ========================================= */

@media only screen and (max-width: 1199px) {
    .tj-about-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .tj-about-section::before {
        border-radius: 0 0 300px 0;
    }

    .tj-about-section .about-bg-images .about-shape-1 {
        max-width: 475px;
    }

    .tj-about-section .about-bg-images .about-shape-2 {
        left: 28%;
    }

    .tj-about-section .sec-heading .sec-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 991px) {
    .tj-about-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .tj-about-section::before {
        border-radius: 0px;
    }

    .tj-about-section .about-bg-images .about-shape-2,
    .tj-about-section .about-bg-images .about-shape-1 {
        display: none;
    }

    .tj-about-section .sec-heading .sec-title {
        margin-bottom: 15px;
        font-size: 32px;
    }

    .tj-about-section .about-feature-item {
        flex-direction: column;
    }

    .tj-about-section .about-feature-item .feature-box {
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 30px;
        border-right: 0;
        border-bottom: 1px solid var(--th-border-color);
    }

    .tj-about-section .about-feature-item .feature-box:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}


/* =========================================
   tj-service-section Custom Styles
   ========================================= */

.tj-service-section {
    background-color: var(--white-color);
    padding-top: 90px;
    padding-bottom: 90px;
    overflow: hidden;
}

/* --- Section Heading --- */
.tj-service-section .sec-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.tj-service-section .sec-heading .sec-text .sub-title {
    font-family: var(--title-font);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.tj-service-section .sec-heading .sec-title {
    font-family: var(--title-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1;
    margin-bottom: 0;
}

/* --- Star Rating --- */
.tj-service-section .sec-heading .service-rating {
    text-align: end;
}

.tj-service-section .sec-heading .service-rating .star-fill {
    display: inline-block;
    background-color: var(--theme-color);
    border-radius: 32px;
    padding: 2px 7px 3px 12px;
    margin-bottom: 16px;
}

.star-ratings {
    unicode-bidi: bidi-override;
    color: #fff;
    font-size: 16px;
    letter-spacing: 5px;
    line-height: 1;
    position: relative;
    margin: 0;
    padding: 0;
    -webkit-text-stroke: 1px #fff;
}

.star-ratings .fill-ratings {
    color: #fff;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

.star-ratings .fill-ratings span {
    display: inline-block;
}

.star-ratings .empty-ratings {
    position: relative;
    padding: 0;
    display: block;
    z-index: 1;
    color: #fff;
}

.tj-service-section .sec-heading .service-rating .review {
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 1;
}

.tj-service-section .sec-heading .service-rating .review strong {
    color: var(--title-color);
    font-weight: 700;
}

/* --- Service Items --- */
.service-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    /* background-color: var(--title-color); */
    background: linear-gradient(120deg, #07445e 0%, #e31e24 50%, #07445e 100%);
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
}

.service-item .service-images {
    max-width: 645px;
    width: 100%;
    height: 100%;
}

.service-item .service-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item .service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex-direction: column;
    padding: 60px 15px 60px 65px;
}

.service-item .service-content .service-number {
    display: flex;
    align-items: flex-end;
}

.service-item .service-content .service-number span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.service-item .service-content .service-number span.active {
    font-size: 18px;
    color: #ffffff;
}

.service-item .service-content .service-text {
    max-width: 365px;
    width: 100%;
}

.service-item .service-content .service-text .service-icons {
    width: 65px;
    height: 65px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.service-item .service-content .service-text .service-icons img {
    width: 100%;
}

.service-item .service-content .service-text .service-icons i {
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
}

.service-item .service-content .service-text .title {
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    font-family: var(--title-font);
    font-size: 26px;
    font-weight: 700;
}

.service-item .service-content .service-text .title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.service-item .service-content .service-text .title:hover {
    letter-spacing: 0;
}

.service-item .service-content .service-text .desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-family: var(--body-font);
}

.service-item .service-content .service-text .desc p {
    color: white;
}

.service-item .service-content .service-text .desc p:last-child {
    margin-bottom: 0;
    color: white;
}

/* --- Service Item Stack Styling --- */
.service-item.service-stack {
    /* position: sticky; removed to avoid conflict with GSAP pin */
    z-index: 5;
    background: linear-gradient(135deg, #07445e 0%, #1a7fa2 50%, #07445e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item:last-child {
    background: linear-gradient(120deg, #052c3d -50%, #e31e24 50%, #052c3d 100%);
}

/* --- Service Button --- */
.service-item .service-content .service-btn {
    margin-top: 40px;
    display: inline-flex;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--title-font);
    text-decoration: none;
    transition: background-color 0.3s;
}

.service-item .service-content .service-btn .btn_inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item .service-content .service-btn .btn_inner .btn_text {
    color: var(--title-color);
    transition: color 0.3s;
}

.service-item .service-content .service-btn:hover {
    background-color: var(--theme-color);
}

.service-item .service-content .service-btn:hover .btn_inner .btn_text {
    color: #ffffff;
}

.service-item .service-content .service-btn .btn_icon {
    display: inline-flex;
    overflow: hidden;
    height: 1em;
    color: var(--title-color);
}

.service-item .service-content .service-btn .btn_icon span {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease-in-out;
}

.service-item .service-content .service-btn:hover .btn_icon span {
    transform: translateY(-50%);
}

.service-item .service-content .service-btn:hover .btn_icon {
    color: #ffffff;
}

/* --- Hover icon wobble animation --- */
@keyframes wobble-horizontal-hover {
    16.65% {
        transform: translateX(8px);
    }

    33.3% {
        transform: translateX(-6px);
    }

    49.95% {
        transform: translateX(4px);
    }

    66.6% {
        transform: translateX(-2px);
    }

    83.25% {
        transform: translateX(1px);
    }

    100% {
        transform: translateX(0);
    }
}

.service-item:hover .service-icons {
    animation: wobble-horizontal-hover 1s ease-in-out 1;
}

/* =========================================
   Responsive - Service Section
   ========================================= */

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .service-item .service-images {
        max-width: 550px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj-service-section {
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .service-item .service-images {
        max-width: 500px;
    }

    .service-item .service-content {
        padding: 40px 15px 40px 30px;
    }

    .tj-service-section .sec-heading .sec-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 991px) {
    .tj-service-section {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .tj-service-section .sec-heading {
        margin-bottom: 40px;
    }

    .service-item .service-images {
        max-width: 100%;
        height: 610px;
    }

    .service-item .service-content {
        padding: 35px 30px 45px;
    }

    .service-item .service-content .service-text {
        max-width: 100%;
    }

    .service-item .service-content .service-text .service-icons {
        margin-bottom: 25px;
    }

    .service-item .service-content .service-btn {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .service-item .service-images {
        height: 450px;
    }

    .tj-service-section .sec-heading .service-rating {
        text-align: start;
    }

    .tj-service-section .sec-heading .sec-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .service-item .service-images {
        height: 350px;
    }
}

/* =========================================
   gk-footer Custom Styles
   ========================================= */

.gk-footer {
    background: linear-gradient(120deg, #780004 0%, #e31e24 50%, #780004 100%);
    color: #ffffff;
    font-family: var(--body-font, 'Inter', sans-serif);
    position: relative;
}

.gk-footer-main {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gk-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.gk-footer-brand {
    flex: 0 0 320px;
    padding-right: 40px;
}

.gk-footer-divider-v {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 20px;
    display: block;
}

.gk-footer-col {
    flex: 1;
    min-width: 180px;
}

.gk-footer-logo-wrap {
    margin-bottom: 30px;
}

.gk-footer-logo {
    max-width: 180px;
    height: auto;
}

.gk-footer-top-newsletter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
}

.gk-footer-news-left {
    flex: 0 0 auto;
}

.gk-footer-news-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.gk-footer-news-right {
    flex: 1;
    max-width: 550px;
}

.gk-footer-news-form {
    display: flex;
    background-color: #07445e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 5px;
}

.gk-footer-news-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #000000 !important;
    font-size: 15px;
    border-radius: 40px;
    outline: none;
}

.gk-footer-news-input::placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

.gk-footer-news-btn {
    background-color: #e51e25;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 12px 25px;
    font-weight: 600;
    font-family: var(--body-font, 'Inter', sans-serif);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.gk-footer-news-btn:hover {
    background-color: #cc1a20;
}

.gk-footer-divider-h {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

.gk-footer-social-label {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.gk-footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gk-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--theme-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.gk-footer-social a:hover {
    background-color: var(--theme-color, #086ad8);
    color: #ffffff;
}

.gk-footer-col-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
}

.gk-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gk-footer-links li {
    margin-bottom: 15px;
}

.gk-footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.gk-footer-links a:hover {
    color: var(--theme-color, #086ad8);
    padding-left: 5px;
}

.gk-badge {
    background-color: var(--theme-color, #086ad8);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.gk-office-item {
    margin-bottom: 25px;
}

.gk-office-region {
    display: block;
    color: #6a768e;
    font-size: 14px;
    margin-bottom: 8px;
}

.gk-office-address {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.gk-office-phone {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.gk-office-phone:hover {
    color: var(--theme-color, #086ad8);
}

.gk-footer-bottom {
    background-color: #07445e;
    padding: 25px 0;
}

.gk-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #a3adc2;
}

.gk-footer-trust {
    display: flex;
    align-items: center;
    color: #a3adc2;
}

.gk-footer-copy strong {
    color: #ffffff;
    font-weight: 600;
}

.gk-footer-policy a {
    color: #a3adc2;
    text-decoration: none;
    transition: all 0.3s;
}

.gk-footer-policy a:hover {
    color: var(--theme-color, #086ad8);
}

.gk-dot {
    margin: 0 10px;
    color: #4a5468;
}

.gk-scroll-top {
    position: absolute;
    right: 50px;
    bottom: 0;
    transform: translateY(50%);
    width: 50px;
    height: 50px;
    background-color: var(--theme-color, #086ad8);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(8, 106, 216, 0.4);
    z-index: 10;
    transition: all 0.3s;
}

.gk-scroll-top:hover {
    background-color: #ffffff;
    color: var(--theme-color, #086ad8);
}

@media (max-width: 991px) {
    .gk-footer-divider-v {
        display: none;
    }

    .gk-footer-brand {
        flex: 0 0 100%;
        padding-right: 0;
    }

    .gk-scroll-top {
        right: 20px;
        transform: translateY(-50%);
        bottom: 80px;
    }

    .gk-footer-top-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .gk-footer-news-right {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .gk-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .gk-footer-col {
        flex: 0 0 100%;
    }

    .gk-footer-news-title {
        font-size: 26px;
    }

    .gk-footer-news-form {
        flex-direction: column;
        background-color: transparent;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .gk-footer-news-input {
        background-color: #0d1522;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        width: 100%;
    }

    .gk-footer-news-btn {
        width: 100%;
        justify-content: center;
    }
}

.about-area10 {
    background: linear-gradient(120deg, #780004 0%, #e31e24 50%, #780004 100%);
}

.about-desc p {
    color: white;
}

.project-section {
    background: linear-gradient(120deg, #780004 0%, #e31e24 50%, #780004 100%);
}


.project-card3 .box-img:after {
    display: none !important;
}

.project-card3 .project-content {
    background: linear-gradient(0deg, #0b1423 0%, rgba(11, 20, 35, 0.9) 60%, rgba(11, 20, 35, 0) 100%);
    right: 0;
    padding: 60px 40px 30px 40px !important;
    align-items: flex-end;
}

.project-card3 .icon-btn {
    margin-left: auto;
}

.contact-area3 {
    background: linear-gradient(50deg, rgb(226, 0, 0)0%, rgb(180, 25, 25) 50%, rgb(199, 15, 15) 100%);
}

.text-black {
    color: black !important;
}

.main-menu ul li a.active {
    color: var(--theme-color) !important;
}

.main-menu ul li a.active:before {
    background: var(--theme-color) !important;
}

/* =========================================
   service-box service-style-1 — Hover Reveal Cards
   ========================================= */

.service-box.service-style-1 {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    background: #ffffff;
    z-index: 1;
}

/* Image fills the full card */
.service-box.service-style-1 .service-img {
    width: 100%;
    height: 480px;
    overflow: hidden;
    display: block;
}

.service-box.service-style-1 .service-img,
.service-box.service-style-1 .service-title-peek,
.service-box.service-style-1 .service-content {
    position: relative;
    z-index: 2;
}

.service-box.service-style-1 .service-img a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-box.service-style-1 .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: #780004;
}

.service-box.service-style-1 .service-img img::after {
    background-color: red;
}

/* Overlay that slides up on hover */
.service-box.service-style-1 .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 55%;
    padding: 28px 26px 24px;
    /* background: linear-gradient(to top,
            rgba(255, 0, 0, 0.95) 0%,
            rgba(220, 0, 0, 0.75) 50%,
            rgba(180, 0, 0, 0.503) 75%,
            rgba(180, 0, 0, 0.299) 100%);
    transform: translateY(100%); */
    background: linear-gradient(to top,
            rgba(220, 0, 0, 0.848) 0%,
            rgba(255, 53, 53, 0.623) 100%);
    transform: translateY(100%);

    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.45s ease;
    opacity: 0;
    overflow: hidden;
}

/* Title always slightly peeking — a bottom strip */
.service-box.service-style-1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to top,
            rgba(255, 0, 0, 0.977) 0%,
            rgba(255, 0, 0, 0.0) 100%);
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
}

/* Title label peek strip */
.service-box.service-style-1 .service-title-peek {
    position: absolute;
    bottom: 14px;
    left: 20px;
    right: 20px;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-box.service-style-1 .service-title-peek h3 {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding-bottom: 4rem;
    background: rgba(227, 30, 36, 0.9);
    /* Theme red overlay for visibility */
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 38px;
}


/* Title + text inside overlay */
.service-box.service-style-1 .service-content .box-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.service-box.service-style-1 .service-content .box-title a {
    color: #ffffff;
    text-decoration: none;
}

.service-box.service-style-1 .service-content .service-box_text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 18px;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.4s ease 0.18s, opacity 0.4s ease 0.18s;
}

.service-box.service-style-1 .service-content .th-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: black;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--title-font, 'Plus Jakarta Sans', sans-serif);
    transition: background 0.3s ease, transform 0.3s ease;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.4s ease 0.26s, opacity 0.4s ease 0.26s,
        background 0.3s ease;
}

.service-box.service-style-1 .service-content .th-btn:hover {
    background: #07445e;
    color: #ffffff;
    transform: translateY(-2px) !important;
}

/* === HOVER STATE === */
.service-box.service-style-1:hover .service-img img {
    transform: scale(1.08);
}

.service-box.service-style-1:hover::after {
    opacity: 0;
}

.service-box.service-style-1:hover .service-title-peek {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.service-box.service-style-1:hover .service-content {
    transform: translateY(0);
    opacity: 1;
}

.service-box.service-style-1:hover .service-content .box-title,
.service-box.service-style-1:hover .service-content .service-box_text,
.service-box.service-style-1:hover .service-content .th-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Black dotted border on hover */
.service-box.service-style-1::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 4px solid red;
    transition: border-color 0.35s ease;
    padding: 10px;
    z-index: 3;
    pointer-events: none;
}


/* =========================================
   Service Card — Shape Variants (sv-shape-1 to sv-shape-8)
   ========================================= */

/* Shape 1 — Large top-left + bottom-right radius (classic elegant) */
.service-box.service-style-1.sv-shape-1 {
    border-radius: 60px 16px 60px 16px;
}

.service-box.service-style-1.sv-shape-1::before {
    border-radius: 60px 16px 60px 16px;
}

/* Shape 2 — Full pill / stadium (round L&R sides) */
.service-box.service-style-1.sv-shape-2 {
    border-radius: 999px;
}

.service-box.service-style-1.sv-shape-2::before {
    border-radius: 999px;
}

.service-box.service-style-1.sv-shape-2 .service-content {
    border-radius: 0 0 999px 999px;
}

/* Shape 3 — Wavy arch at top (clip-path convex arc) */
.service-box.service-style-1.sv-shape-3 {
    border-radius: 16px;
    clip-path: ellipse(52% 100% at 50% 50%);
}

.service-box.service-style-1.sv-shape-3::before {
    border-radius: 16px;
}

/* Shape 4 — Diamond corners notched (octagon-ish) */
.service-box.service-style-1.sv-shape-4 {
    border-radius: 0;
    clip-path: polygon(20px 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            20px 100%,
            0 calc(100% - 20px),
            0 20px);
}

.service-box.service-style-1.sv-shape-4::before {
    border-radius: 0;
    clip-path: polygon(20px 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            20px 100%,
            0 calc(100% - 20px),
            0 20px);
}

/* Shape 5 — Top arch / dome (bottom flat, top rounded) */
.service-box.service-style-1.sv-shape-5 {
    border-radius: 50% 50% 20px 20px / 60px 60px 20px 20px;
}

.service-box.service-style-1.sv-shape-5::before {
    border-radius: 50% 50% 20px 20px / 60px 60px 20px 20px;
}

/* Shape 6 — Slanted parallelogram slice */
.service-box.service-style-1.sv-shape-6 {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
}

.service-box.service-style-1.sv-shape-6::before {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
}

/* Shape 7 — Shield / house bottom (bottom-center point) */
.service-box.service-style-1.sv-shape-7 {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

.service-box.service-style-1.sv-shape-7::before {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

/* Shape 8 — Asymmetric organic blob */
.service-box.service-style-1.sv-shape-8 {
    border-radius: 40% 20% 50% 10% / 10% 50% 20% 40%;
}

.service-box.service-style-1.sv-shape-8::before {
    border-radius: 40% 20% 50% 10% / 10% 50% 20% 40%;
}

/* Ensure ::after pseudo (peek strip) inherits correct shape for clip-path shapes */
.service-box.service-style-1.sv-shape-4::after,
.service-box.service-style-1.sv-shape-6::after,
.service-box.service-style-1.sv-shape-7::after {
    clip-path: none;
}

.about-item_centent>h5,
p {
    color: white;
}

.contact-map {
    padding: 1rem;
    margin-bottom: 1rem;
}

.gradient-bg {
    background: linear-gradient(120deg, #780004 0%, #e31e24 50%, #780004 100%);

}

.box-content p {
    color: black;
}

/* Fix text and icon overflow inside category sliders */
.category-card.style4 {
    height: 540px;
}

@media(max-width: 375px) {
    .category-card.style4 {
        height: 100%;
    }
}

.products-grid {
    margin-top: 2rem;
}

/* Move project content to bottom and reverse gradient */
.project-item2 .project-content {
    top: auto !important;
    bottom: 30px !important;
}

.project-item2_img::before {
    background: linear-gradient(0deg, #e31e25cd 0%, #e31e25c7 20%, rgba(227, 30, 36, 0) 40%) !important;
}

/* =========================================
   GK Certificate Section Styles (Redesigned)
   ========================================= */
.gk-certificate-sec {
    background: #f8fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gk-cert-left-content .gk-cert-big-img {
    background: #ffffff;
    padding: 25px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s ease;
}

.gk-cert-left-content .gk-cert-big-img:hover {
    transform: translateY(-8px);
    border-color: #e31e24;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.gk-cert-left-content .gk-cert-big-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.gk-cert-left-content .gk-cert-text-area {
    margin-top: 30px;
}

.gk-cert-left-content .sub-title {
    color: #e31e24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: var(--title-font);
}

.gk-cert-left-content .sec-title {
    font-size: 42px;
    font-weight: 800;
    color: #07445e;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: var(--title-font);
}

.gk-cert-left-content .sec-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.gk-cert-small-img {
    background: rgb(252, 189, 32);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gk-cert-small-img:hover {
    transform: scale(1.08);
    border-color: #e31e24;
    box-shadow: 0 12px 25px rgba(227, 30, 36, 0.1);
    z-index: 5;
}

.gk-cert-small-img img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition: all 0.4s ease;
}

@media (max-width: 991px) {
    .gk-cert-left-content {
        margin-bottom: 50px;
    }

    .gk-cert-left-content .sec-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .gk-cert-left-content .sec-title {
        font-size: 28px;
    }
}

.project-area4 {
    background: linear-gradient(120deg, #052c3d -50%, #e31e24 50%, #910000 100%);
}

html {
    scroll-behavior: smooth;
}

#product-1,
#product-2,
#product-3,
#product-4,
#product-5,
#product-6,
#product-7,
#product-8 {
    scroll-margin-top: 100px;
    /* adjust to your header height */
}

.copyright-text a {
    color: red;
}


/* Base style (Desktop first) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite ease-out;
    opacity: 0.6;
}

@keyframes wa-pulse {
    0% {
        width: 65px;
        height: 65px;
        opacity: 0.6;
    }

    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* =========================================
   Process Item Small & Static Styles
   ========================================= */
.process-static-grid .process-item.style-2 {
    padding: 50px 30px;
    border-radius: 100px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.process-static-grid .process-item.style-2:hover {
    transform: translateY(-8px);
    border-color: #e31e24;
    box-shadow: 0 15px 50px rgba(227, 30, 36, 0.12);
}

.process-static-grid .process-item.style-2 .process-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #ec2c33;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-static-grid .process-item.style-2 .process-icon img {
    max-width: 45px;
    height: auto;
}

.process-static-grid .process-item.style-2 .process-icon .r-text {
    font-size: 42px;
    font-weight: 900;
    color: #e2e2e2;
    font-family: var(--title-font);
    line-height: 1;
}

.process-static-grid .process-item.style-2 .box-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-static-grid .process-item.style-2 .process-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.process-static-grid .process-item.style-2 .box-number {
    font-size: 16px;
    font-weight: 700;
    color: #e31e24;
    background: #fff5f5;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin: 0 auto;
}

/* =========================================
   Sub-Menu Custom Styles
   ========================================= */
.main-menu ul li .sub-menu li a {
    font-size: 18px !important;
    padding: 12px 25px !important;
    text-transform: capitalize;
}

.mep-contracting-section {
    padding: 60px 0px;
}

/* --- Custom Red Gradient Row --- */
.red-gradient-row {
    background: linear-gradient(135deg, #8a0000 0%, #e31e24 50%, #8a0000 100%);
    border-radius: 20px;
    padding: 4 v 0px 40px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
    position: relative;
    overflow: hidden;
    margin-right: 0;
    margin-left: 0;
    padding: 30px;
    margin-bottom: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.red-gradient-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4);
}

.red-gradient-row::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.red-gradient-row .sec-title,
.red-gradient-row .about-text,
.red-gradient-row .box-title,
.red-gradient-row .about-feature ul li {
    color: #ffffff !important;
}

.red-gradient-row .about-feature ul li::before {
    color: #ffffff !important;
    opacity: 0.8;
}

.red-gradient-row .th-btn.btn-2 {
    background-color: #ffffff;
    color: #e31e24;
    border: none;
}

.red-gradient-row .th-btn.btn-2:hover {
    background-color: #000000;
    color: #ffffff;
}

.red-gradient-row .about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.red-gradient-row:hover .about-image img {
    transform: scale(1.02);
}

/* =========================================
   MEP Service Feature List — White FontAwesome Icons
   ========================================= */
.about-item.style-16 .about-feature ul {
    list-style: none;
    padding: 0;
}

.about-item.style-16 .about-feature ul li {
    position: relative;
    padding-left: 25px;
}

.about-item.style-16 .about-feature ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 5px;
    color: #ffffff !important;
    font-size: 14px;
}

@media (max-width: 575px) {
    .product-banner {
        display: none !important;
    }
}

.th-menu-wrapper .mobile-logo img {
    max-width: 185px;
    height: auto;
    display: inline-block;
}