html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
    margin: 0;
    padding: 0;
}

.overview-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-parallax-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.5s ease;
}

.overview-image-wrapper:hover .overview-parallax-img {
    transform: scale(1.05);
}



.overview-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fefefe;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge-text {
    color: #fefefe;
    font-size: 16px;
    font-weight: 500;
    max-width: 250px;
    line-height: 1.4;
}

.overview-content {
    padding-left: 20px;
}

.overview-subheading {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.overview-heading {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0D0D0D;
}

.overview-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.overview-buttons {
    display: flex;
    align-items: center;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: transparent;
    color: #0D0D0D;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--primary-color);
}

.overview-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-feature-card {
    background: #fefefe;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mini-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mini-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.mini-card-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0D0D0D;
}

.explore-badge {
    background: #1e3a5f;
    color: #fefefe;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-card-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.mini-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1e3a5f;
    color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.footer-val {
    font-size: 15px;
    font-weight: 700;
    color: #0D0D0D;
}

@media (max-width: 991px) {
    .overview-feature-cards {
        grid-template-columns: 1fr;
    }

    .overview-heading {
        font-size: 30px;
    }

    .overview-content {
        padding-left: 0;
    }
}


.our-services .swiper-slide {
    height: auto;
}

.our-services .service-item {
    height: 350px;
    /* Force all cards to be the exact same height */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.our-services .service-image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-services .service-item-image {
    width: 100%;
    height: 100%;
}

.our-services .service-item-image figure,
.our-services .service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark gradient overlay */
.our-services .service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

/* Removed hover gradient change per request */

.our-services .service-item-header {
    position: static;
    /* allow absolute h3 to be relative to the card */
    padding: 15px 15px;
    color: #fefefe;
    margin-bottom: 0;
    border: none !important;
    background: transparent !important;
    text-align: left;
}

.our-services .service-item-content {
    position: relative;
    z-index: 3;
}

.our-services .service-item-title {
    display: block;
    position: static;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 10px;
    text-align: left;
}

.our-services .service-item-title h2,
.our-services .service-item-title .h2 {
    margin: 0;
    position: relative;
    z-index: 3;
}

.our-services .service-item-title h2 a,
.our-services .service-item-title .h2 a {
    color: #fefefe !important;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.our-services .service-item-title h3:not(.h2),
.our-services .service-item-title .h3 {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.our-services .service-item-content {
    transition: all 0.4s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.our-services .service-item:hover .service-item-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 5px;
}

.our-services .service-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.our-services .service-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.our-services .service-item-content p {
    color: #e0e0e0 !important;
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}

.our-services .service-item-btn {
    position: absolute;
    bottom: 35px;
    right: 30px;
    z-index: 4;
    background: transparent !important;
    border: none !important;
}

.our-services .service-item-btn a {
    background: var(--primary-color) !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.our-services .service-item:hover .service-item-btn a {
    background: var(--accent-color) !important;
    transform: scale(1.1);
}

.our-services .service-item-btn a img {
    filter: brightness(0) invert(1);
    width: 16px;
    transition: all 0.3s ease;
}

.our-services .service-item:hover .service-item-btn a img {
    filter: none;
}


.sticky-projects-section {
    padding: 60px 0 50px 0;
    background-color: #0D0D0D;
    background-image: url("images/hero-bg.jpg");
    background-size: cover;
    background-blend-mode: overlay;
}

.sticky-project-card {
    position: sticky;
    height: 410px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(145deg, #fefefe 0%, #f7f9f5 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    overflow: hidden;
}

.sticky-project-card .row {
    height: 100%;
}

/* The Deck of Cards Stacking Effect */
.spc-1 {
    top: 100px;
    z-index: 10;
}

.spc-2 {
    top: 120px;
    z-index: 11;
}

.spc-3 {
    top: 140px;
    z-index: 12;
}

.spc-4 {
    top: 160px;
    z-index: 13;
}

.spc-image-wrap {
    height: 100%;
}

.spc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spc-content {
    padding: 25px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.spc-title {
    font-size: 22px !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
    color: #0D0D0D;
    margin-bottom: 0;
}

.spc-subtitle {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #000000;
    margin-bottom: 15px;
}

.spc-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555;
    margin-bottom: 10px;
}

.spc-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.spc-meta-item p {
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #888;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spc-meta-item h5 {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #111;
    margin: 0;
    white-space: nowrap;
}

.spc-separator {
    display: none;
}

@media (max-width: 991px) {

    .spc-image-right,
    .spc-image-left {
        border-radius: 24px 24px 0 0 !important;
    }

    .sticky-project-card {
        position: relative;
        top: 0 !important;
        height: auto;
        margin-bottom: 40px;
    }

    .spc-image {
        min-height: 300px;
    }

    .spc-content {
        padding: 30px;
    }

    .spc-meta-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .spc-separator {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .spc-meta-grid {
        grid-template-columns: 1fr;
    }
}

.spc-image-right {
    border-radius: 0 24px 24px 0;
}

.spc-image-left {
    border-radius: 24px 0 0 24px;
}

.spc-feature-blocks {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spc-f-block {
    display: flex;
    align-items: center;
    gap: 5px !important;
    background: #fcfcfc;
    padding: 4px 10px 4px 4px !important;
    border-radius: 30px;
    border: 1px solid var(--accent-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.spc-f-icon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fefefe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
}

.spc-f-block h6 {
    margin: 0;
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #444;
}


.cta-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #050505;
    /* Fallback for the left side */
}

.cta-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #0D0D0D 35%, rgba(0, 0, 0, 0.8) 55%, transparent 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 80px;
}

.cta-content h2 {
    color: #fefefe;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    color: #d1d1d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fefefe;
    color: #0D0D0D;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--accent-color);
    color: #0D0D0D;
}

@media (max-width: 991px) {
    .cta-bg-image {
        width: 100%;
    }

    .cta-overlay {
        background: linear-gradient(to right, #0D0D0D 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0, 0, 0, 0.5) 100%);
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content {
        padding: 40px 30px;
    }
}


.recent-projects-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #0D0D0D;
    margin: 0;
}

.recent-projects-title i {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #0D0D0D;
}





@media (max-width: 991px) {
    .recent-projects-title {
        font-size: 34px;
    }
}

.spc-features {
    margin-top: 10px;
}

.spc-features p {
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.6;
    margin-bottom: 12px;
}

.spc-location i {
    color: var(--accent-color);
}



/* ==========================================
   Blog Section Scoped Styles
   ========================================== */
.our-blog .post-item-content h2,
.our-blog .post-item-content h2 a {
    font-size: 24px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
}

/* ==========================================
   Footer Section Scoped Styles
   ========================================== */
.main-footer .footer-working-hours h3,
.main-footer .footer-links h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
}


/* ==========================================
   Blog Post Enhancements (Title Color & Image Overlay)
   ========================================== */
.our-blog .post-item-content h2,
.our-blog .post-item-content h2 a {
    color: #ffffff !important;
}

.our-blog .post-featured-image {
    position: relative;
}

.our-blog .post-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Dark overlay to make text readable */
    pointer-events: none;
    z-index: 0;
}

.our-blog .post-item-body,
.our-blog .post-item-tags {
    z-index: 2 !important;
    /* Ensure text and tags stay above the overlay */
}

/* ==========================================
   Custom Cursor Text Fix
   ========================================== */
.cb-cursor-text {
    display: none !important;
}

/* ==========================================
   Infinite Marquee for Client Logos
   ========================================== */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 25px;
}

.marquee-track.left {
    animation: scroll-left 40s linear infinite;
}

.marquee-track.right {
    animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 90px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f3f4f6;
    padding: 20px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ========================================= */
/* About Us Page Custom Styles               */
/* ========================================= */

/* Company Introduction Section */
.about-company-intro-image {
    width: 100%;
}

.about-company-intro-image figure {
    margin: 0;
}

.about-company-intro-image figure img {
    width: 100%;
    border-radius: 10px;
}

.about-company-intro-content {
    padding-left: 1rem;
}

.about-company-intro-content .section-title h2 {
    font-size: 32px;
    line-height: 1.2em !important;
    margin-bottom: 15px !important;
}

.about-company-intro-content p {
    font-size: 14px !important;
    line-height: 1.6em !important;
}

.about-company-intro-list {
    margin-top: 25px;
}

.about-company-intro-list ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.about-company-intro-list ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 14px;
    color: var(--bs-body-color);
    font-weight: 400 !important;
}

.about-company-intro-list ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-company-intro-content {
        padding-left: 0;
        margin-top: 0;
    }

    .about-company-intro-image {
        background-attachment: scroll;
        height: 200px;
    }
}

/* ========================================= */
/* Company History Timeline                  */
/* ========================================= */
.company-history {
    padding: 60px 0;
    background-color: var(--secondary-color);
    /* Explicitly set slightly gray bg to contrast white boxes */
}

.history-vertical-wrapper {
    position: relative;
    padding: 10px 0;
    margin-top: 30px;
}

.timeline-vertical-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    /* Visible on light bg */
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-items-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Space between rows */
    position: relative;
    z-index: 1;
}

.history-item {
    position: relative;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(186, 151, 49, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    z-index: 2;
    border: 3px solid var(--white-color);
}

.history-item:hover .timeline-dot {
    box-shadow: 0 0 0 8px rgba(186, 151, 49, 0.25);
    transform: translate(-50%, -50%) scale(1.2);
}

.history-image-box {
    width: 100%;
    height: 350px;
    /* Increased image height */
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.history-item:hover .history-image-box {
    transform: translateY(-5px);
}

.history-content-box {
    background-color: var(--white-color);
    padding: 90px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* 1px solid border */
    border-bottom: 4px solid var(--accent-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.history-item:hover .history-content-box {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.history-year {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.history-item:hover .history-year {
    color: var(--accent-color);
}

.history-content-box h3 {
    font-size: 20px !important;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    /* Reduced heading font weight */
}

.history-content-box p {
    font-size: 15px !important;
    color: var(--text-color);
    margin: 0;
    opacity: 0.75;
    line-height: 1.5em;
}

/* Add padding to left/right columns to push them away from center line */
@media (min-width: 992px) {
    .history-left {
        padding-right: 40px;
    }

    .history-right {
        padding-left: 40px;
    }
}

/* Mobile Responsive Vertical Timeline */
@media (max-width: 991px) {
    .timeline-vertical-line {
        left: 15px;
        transform: none;
    }

    .timeline-dot {
        left: 15px;
        top: 25px;
        /* Align near the top of the item */
        transform: translate(-50%, 0);
    }

    .history-item:hover .timeline-dot {
        transform: translate(-50%, 0) scale(1.2);
    }

    .timeline-items-container {
        gap: 30px;
    }

    .history-left,
    .history-right {
        padding-left: 40px !important;
        padding-right: 15px !important;
        /* Reset right padding */
        width: 100%;
        margin-bottom: 15px;
    }

    .history-content-box.text-end {
        text-align: left !important;
    }

    .history-image-box {
        height: 200px;
    }
}

/* ========================================= */
/* Founder Message Section                   */
/* ========================================= */
.founder-message {
    padding: 40px 0;
    background-color: var(--white-color);
}

.founder-card {
    background-color: var(--white-color);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Subtle premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.founder-image-box {
    width: 100%;
    height: 100%;
    min-height: 500px;
    /* Increased from 400px to make image taller */
    background-size: 100% 100%;
    /* Shows the full image without cropping */
    background-position: center;
    background-repeat: no-repeat;
}

.founder-content-box {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    /* Ensures it stretches to match the taller image */
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.founder-quote-text {
    margin-bottom: 0;
    /* Margin handled by divider */
}

.founder-quote-text p {
    font-size: 22px;
    line-height: 1.6em;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.founder-quote-text p .light-text {
    color: var(--text-color);
    opacity: 0.6;
}

.founder-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 40px -50px;
    /* Extends to the edges of the box */
}

.founder-details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.founder-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-details span {
    font-size: 13px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.founder-quote-icon {
    font-size: 140px;
    line-height: 1;
    color: var(--accent-color);
    /* Golden color */
    opacity: 0.15;
    /* Transparent to act as a watermark */
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: -1;
}

/* Mobile Responsiveness for Founder Message */
@media (max-width: 991px) {
    .founder-image-box {
        min-height: 300px;
    }

    .founder-content-box {
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .founder-divider {
        margin: 30px -30px;
    }

    .founder-quote-text p {
        font-size: 18px;
    }
}

/* ========================================= */
/* Company Statistics Section                */
/* ========================================= */
.company-statistics {
    padding: 50px 0;
    background-color: #ffffff;
    /* White background */
}

.stats-content-left {
    padding-right: 30px;
}

.stats-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000000 !important;
    opacity: 0.6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.stats-title {
    font-size: 30px !important;
    font-weight: 600;
    line-height: 1.2em;
    color: #000000 !important;
    /* Forcing a classy serif font similar to screenshot */
    font-family: 'DM Serif Display', "Playfair Display", serif;
}

.stats-bold-desc {
    font-size: 15px !important;
    color: #000000 !important;
    line-height: 1.6em;
    margin-bottom: 10px;
}

.stats-light-desc {
    font-size: 15px !important;
    color: #000000 !important;

}

.stats-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0;
}

.stat-item {
    text-align: left;
}

.stat-number-box {
    margin-bottom: 15px;
}

.stat-number {
    font-size: 40px !important;
    font-weight: 600;
    color: var(--accent-color, #d4af37) !important;
    line-height: 1;
}

.stat-suffix {
    font-size: 26px !important;
    font-weight: 600;
    color: var(--accent-color, #d4af37) !important;
    font-family: 'DM Serif Display', "Playfair Display", serif;
}

.stat-item-title {
    font-size: 16px !important;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 5px;
}

.stat-item .stat-desc {
    font-size: 13px !important;
    color: #000000 !important;
    opacity: 0.7;
    margin: 0;
}

/* ========================================= */
/* Certifications Section                    */
/* ========================================= */
.company-certifications {
    background-color: var(--bg-color);
    /* Light background */
}

.cert-image-box {
    border-radius: 10px;
    background: #fff;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cert-image-box img {
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
    max-height: 500px !important;
    border-radius: 10px;
}

/* Mobile Responsiveness for Statistics */
@media (max-width: 991px) {
    .stats-content-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .stats-title {
        font-size: 22px !important;
        font-weight: 600 !important;
    }

    .stat-item {
        margin-bottom: 40px;
    }

    .stats-divider {
        margin: 40px 0;
    }
}

/* ========================================= */
/* Process Flow Section                      */
/* ========================================= */
.process-flow-box {
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    padding: 60px 30px 40px;
    position: relative;
    background: transparent;
}

.process-title-wrapper {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #faf9f5;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.process-main-title {
    font-size: 24px !important;
    font-weight: 700;
    margin: 0 15px;
    color: #111;
}

.process-title-line {
    height: 1px;
    width: 30px;
    background-color: var(--accent-color);
}

.process-title-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 5px;
}

.process-grid {
    margin-top: 20px;
}

.process-step {
    padding: 0 10px;
}

.process-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.process-icon {
    width: 90px;
    height: 90px;
    background-color: #000;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 32px;
    color: #fff;
}

.process-step:hover .process-icon {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.process-number {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 2px solid #faf9f5;
}

/* Connecting Dashed Line */
.process-icon-wrapper:not(.last-step)::after {
    content: '\f30b';
    /* FontAwesome arrow-right-long */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-10px, -50%);
    color: #000;
    font-size: 16px;
    z-index: 1;
    width: calc(100% + 20px);
    text-align: right;
    letter-spacing: 5px;
}

.process-step-title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-bottom: 15px;
    line-height: 1.4em;
    min-height: 40px;
}

.process-step-desc {
    font-size: 13px !important;
    color: #444;
    line-height: 1.5em;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .process-icon-wrapper:not(.last-step)::after {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .process-flow-box {
        padding: 40px 15px 10px;
    }

    .process-main-title {
        font-size: 15px !important;
    }
}

/* ========================================= */
/* Precision Banner Section                  */
/* ========================================= */
.precision-banner-wrapper {
    background-color: #0b0c10;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    position: relative;
    padding: 20px 20px;
    overflow: hidden;
}

/* Golden Corner Ribbon */
.precision-banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 60px 60px;
    border-color: transparent transparent var(--accent-color) transparent;
}

/* Left Quote Styling */
.precision-quote-col {
    position: relative;
    padding: 10px 30px;
}

@media (min-width: 1200px) {
    .precision-quote-col::after {
        content: '';
        position: absolute;
        top: 10px;
        bottom: 10px;
        right: 0;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.15);
    }
}

.precision-quote-box {
    position: relative;
    padding: 10px 20px;
    display: inline-block;
}

.quote-mark {
    font-size: 80px;
    font-family: 'DM Serif Display', serif;
    color: var(--accent-color);
    line-height: 0;
    position: absolute;
}

.left-quote {
    top: 10px;
    left: 0;
}

.right-quote {
    bottom: -15px;
    right: 0;
}

.quote-text {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8em;
    letter-spacing: 0.5px;
}

.quote-text .highlight-text {
    color: var(--accent-color);
}

/* Stats Layout */
.precision-stats-row {
    height: 100%;
}

.precision-stat-item {
    padding: 15px 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.precision-stat-item:first-child {
    border-left: none;
}

@media (max-width: 1199px) {
    .precision-quote-col {
        margin-bottom: 20px;
        text-align: center;
    }

    .precision-quote-box {
        text-align: center;
    }

    .precision-stat-item:nth-child(odd) {
        border-left: none;
    }

    .precision-stat-item:first-child {
        border-left: none;
    }
}

@media (min-width: 1200px) {
    .precision-stat-item:first-child {
        border-left: none;
    }
}

.precision-stat-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    width: 100%;
}

.precision-icon {
    margin-right: 0;
    margin-bottom: 8px;
    line-height: 1;
}

.precision-icon i {
    font-size: 32px;
    color: var(--accent-color);
}

.precision-icon .icon-circle {
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.precision-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3em;
    text-align: center;
}

.precision-desc {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.6em;
    text-align: center;
}

.overview-description p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #444444;
}

/* ========================================= */
/* Service Details Page                      */
/* ========================================= */
.why-choose-card:hover,
.feature-highlight-card:hover,
.process-card:hover,
.industry-card:hover,
.tech-card:hover,
.material-card:hover,
.recent-project-card:hover,
.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

.project-type-card:hover .project-img,
.recent-project-card:hover .project-img {
    transform: scale(1.05);
}

.project-type-card .project-img,
.recent-project-card .project-img {
    transition: transform 0.5s;
}

/* Accordion Styles */
.service-faqs .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: transparent;
    box-shadow: none;
}

.service-faqs .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

/* Responsive Timeline */
@media (max-width: 767px) {
    .lifecycle-timeline {
        flex-direction: column;
    }
}

/* Why Choose Us Section - Balanced Compact Design */

.why-choose-us>.container>.row>div>p {
    font-size: 15px !important;
}

.why-choose-us .choose-card {
    padding: 35px 35px !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    border: none !important;
}

.why-choose-us .choose-card i {
    font-size: 28px !important;
    margin-bottom: 20px !important;
}

.why-choose-us .choose-card h3 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
}

.why-choose-us .choose-card p {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    line-height: 1.6 !important;
}

.why-choose-us .choose-card a {
    padding: 10px 22px !important;
    font-size: 14px !important;
    border-radius: 30px !important;
}

/* Standardized Section Headings applied forcefully */
.why-choose-us h2,
.core-features h2,
.industries-serve h2,
.service-process h2,
.about-service h2,
.cta-section h2,
.faq-section h2 {
    font-size: 30px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: block !important;
}

/* Force standard subheading size and centering */
.why-choose-us h2+p,
.core-features h2+p,
.industries-serve h2+p,
.service-process h2+p,
.about-service h2+p,
.cta-section h2+p,
.faq-section h2+p {
    font-size: 16px !important;
    font-weight: 400 !important;
    text-align: center;
    max-width: 1200px !important;
    margin: 0 auto 40px auto !important;
    line-height: 1.6 !important;
    display: block !important;
}

/* Fix wrapper alignment just in case */
.why-choose-us .row:first-child .col-lg-8,
.core-features .row:first-child .col-lg-12,
.industries-serve .row:first-child .col-lg-8 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* Ensure white text is preserved on dark backgrounds */
.bg-dark h2,
.bg-dark p,
.text-white,
.text-white+p,
.cta-section h2,
.cta-section p {
    color: #ffffff !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Reduce spacing in Service Process accordion (Mobile Only) */
@media (max-width: 767px) {
    .process-accordion .accordion-button {
        padding: 8px 15px !important;
        min-height: auto !important;
    }

    .process-accordion .accordion-body {
        padding: 0px 15px 15px 15px !important;
    }

    .process-accordion .accordion-item {
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
}

/* Desktop Spacing for Service Process Accordion to align with image */
@media (min-width: 768px) {
    .process-accordion .accordion-item {
        margin-bottom: 20px !important;
        border: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        padding-bottom: 5px !important;
    }

    .process-accordion .accordion-button {
        padding: 15px 20px !important;
    }
}

/* Forcefully Reduce Testimonial Section Size */
.our-testimonial {
    padding: 40px 0 !important;
}

.our-testimonial .testimonial-item {
    padding: 25px !important;
}

.our-testimonial p {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
}

.our-testimonial .author-image img {
    width: 45px !important;
    height: 45px !important;
}

.our-testimonial .testimonial-author h4 {
    font-size: 16px !important;
    margin-bottom: 2px !important;
}

.our-testimonial .testimonial-author p {
    font-size: 13px !important;
    margin: 0 !important;
}

.our-testimonial .testimonial-rating {
    margin-bottom: 10px !important;
    font-size: 14px !important;
}

.our-testimonial .section-title h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

/* Forcefully Reduce Custom Testimonials Section Size */
.our-testimonials {
    padding: 50px 0 30px 0 !important;
}

.our-testimonials .section-title h2 {
    font-size: 36px;
    font-weight: 600 !important;
}

.our-testimonials>.container>.row>.col-lg-7 p {
    font-size: 14px !important;
}

.our-testimonials .testimonial-card {
    padding: 25px !important;
}

.our-testimonials .testimonial-card>p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
}

.our-testimonials .card-footer h4 {
    font-size: 15px !important;
}

.our-testimonials .card-footer span {
    font-size: 12px !important;
}

.our-testimonials .card-footer img {
    width: 40px !important;
    height: 40px !important;
}

.our-testimonials .google-icon {
    width: 32px !important;
    height: 32px !important;
}

/* Testimonial Nav Buttons Hover Effect */
.our-testimonials .nav-btn-prev,
.our-testimonials .nav-btn-next {
    transition: all 0.3s ease-in-out !important;
}

.our-testimonials .nav-btn-prev:hover,
.our-testimonials .nav-btn-next:hover {
    background: var(--accent-color) !important;
}

.our-testimonials .nav-btn-prev:hover i,
.our-testimonials .nav-btn-next:hover i {
    color: #000 !important;
}

/* Marquee Logos Section */
.marquee-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 50px;
    padding-right: 50px;
    align-items: center;
}

.marquee-left-to-right .marquee-content {
    animation: marquee-lr 30s linear infinite;
}

.marquee-right-to-left .marquee-content {
    animation: marquee-rl 30s linear infinite;
}

.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 24px;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    min-width: 250px;
    transition: 0.3s;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.client-logo-item img,
.client-logo-item svg {
    margin-right: 15px;
    height: 35px;
    width: auto;
}

@keyframes marquee-lr {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes marquee-rl {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta-content,
.cta-content h2,
.cta-content p {
    text-align: left !important;
}

/* WCU Section Forceful Overrides */
.wcu-card {
    padding: 25px !important;
    height: 320px !important;
    border-radius: 15px !important;
}

.wcu-card h3 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
}

.wcu-card p {
    font-size: 14px !important;
    margin-bottom: 15px !important;
}

.wcu-image {
    height: 130px !important;
    width: 150px !important;
    background-size: contain !important;
    background-position: bottom left !important;
    background-repeat: no-repeat !important;
    left: 20px !important;
    bottom: 10px !important;
    right: auto !important;
    opacity: 1 !important;
    filter: none !important;
}

.wcu-watermark {
    position: absolute !important;
    right: 10px !important;
    top: 30px !important;
    writing-mode: vertical-rl !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    opacity: 0.3 !important;
    letter-spacing: 2px !important;
    white-space: nowrap !important;
    transform: none !important;
}

/* Horizontal Project Card Styles */
.project-card-horizontal {
    background: #fff !important;
    border-radius: 16px !important;
    border: 1px solid var(--accent-color) !important;
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    height: 100% !important;
}

.project-card-horizontal:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-5px) !important;
}

.project-card-horizontal .project-img-wrap {
    width: 40% !important;
    position: relative !important;
    overflow: hidden !important;
}

.project-card-horizontal .project-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

.project-card-horizontal:hover .project-img-wrap img {
    transform: scale(1.05) !important;
}

.project-card-horizontal .project-content-ui {
    width: 60% !important;
    padding: 30px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    position: relative !important;
}

.project-card-horizontal h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 20px !important;
}

.project-card-horizontal .project-details {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
}

.project-card-horizontal .project-details .badge {
    background: #f4f6f8 !important;
    color: #555 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 15px !important;
    border: 1px solid #e0e0e0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    border-radius: 50rem !important;
}

.project-card-horizontal .project-details .badge i {
    color: var(--accent-color) !important;
}

.project-card-horizontal .project-cost {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--accent-color) !important;
    margin-top: auto !important;
}

@media (max-width: 767px) {
    .project-card-horizontal {
        flex-direction: column !important;
    }

    .project-card-horizontal .project-img-wrap {
        width: 100% !important;
        height: 250px !important;
    }

    .project-card-horizontal .project-content-ui {
        width: 100% !important;
        padding: 20px !important;
    }
}

/* Transportation Infrastructure Section */
.transportation-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.transportation-title {
    font-size: 28px;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transportation-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.transportation-list {
    display: flex;
    flex-direction: column;
}

.trans-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-right: 20px;
}

.trans-item:last-child {
    border-bottom: none;
}

.trans-label {
    font-weight: 700;
    color: #111;
    width: 120px;
    flex-shrink: 0;
    font-size: 14px;
}

.trans-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.trans-item.active {
    position: relative;
}

.trans-dot {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 50%;
}

.transportation-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .transportation-image {
        min-height: 300px;
    }
}

/* Trust Banner CSS */
.trust-banner-section {
    background-color: #050b12 !important;
    padding: 10px 0 !important;
    min-height: 80px !important;
}

.trust-banner-sub {
    letter-spacing: 2px !important;
    font-size: 0.75rem !important;
    color: #ffffff !important;
}

.trust-banner-main {
    color: #c89b51 !important;
    font-size: 1.25rem !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

.trust-banner-bottom {
    letter-spacing: 2px !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.banner-line {
    height: 1px !important;
    max-width: 120px !important;
    opacity: 0.6 !important;
}

.banner-line-left {
    background: linear-gradient(270deg, var(--accent-color), transparent) !important;
}

.banner-line-right {
    background: linear-gradient(90deg, var(--accent-color), transparent) !important;
}

/* ========================================= */
/* Key Benefits Banner                       */
/* ========================================= */
.key-benefits-banner {
    background-color: #0b1016 !important;
}

.kb-title-box {
    background: var(--accent-color) !important;
    padding: 10px 30px 10px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%) !important;
    min-width: 140px !important;
}

.kb-title-box h3 {
    font-size: 16px !important;
    letter-spacing: 1px !important;
    text-align: center !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    color: #fff !important;
}

.kb-items-wrapper {
    padding-left: 5px !important;
}

.kb-item {
    display: flex !important;
    align-items: center !important;
    padding: 10px 10px !important;
    border-right: 1px solid rgba(214, 163, 84, 0.25) !important;
    flex: 1 1 0 !important;
    min-width: 150px !important;
}

.kb-item:last-child {
    border-right: none !important;
}

.kb-icon {
    font-size: 20px !important;
    color: var(--accent-color) !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.kb-icon-rupee {
    width: 24px !important;
    height: 24px !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
}

.kb-icon-rupee i {
    font-size: 12px !important;
    margin-right: 0 !important;
}

.kb-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.kb-content h4 {
    color: var(--accent-color) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
    margin-top: 0 !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
}

.kb-content p {
    color: #e0e0e0 !important;
    font-size: 12px !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    line-height: 1.3 !important;
    padding-top: 5px !important;
}

@media (max-width: 1400px) {
    .kb-item {
        flex: 1 1 33.33% !important;
        border-bottom: 1px solid rgba(214, 163, 84, 0.25) !important;
    }

    .kb-item:nth-child(3n) {
        border-right: none !important;
    }

    .kb-item:nth-last-child(-n+3) {
        border-bottom: none !important;
    }
}

@media (max-width: 768px) {
    .kb-title-box {
        width: 100% !important;
        clip-path: none !important;
        padding: 5px !important;
        text-align: center;
    }

    .kb-title-box p {
        font-size: 24px !important;
    }

    .kb-items-wrapper {
        padding-left: 0 !important;
    }

    .kb-item {
        flex: 1 1 50% !important;
        min-width: 0 !important;
        border-right: 1px solid rgba(214, 163, 84, 0.25) !important;
        border-bottom: 1px solid rgba(214, 163, 84, 0.25) !important;
    }

    /* Reset leaked tablet rules */
    .kb-items-wrapper .kb-item:nth-child(3n) {
        border-right: 1px solid rgba(214, 163, 84, 0.25) !important;
    }

    .kb-items-wrapper .kb-item:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(214, 163, 84, 0.25) !important;
    }

    /* Apply explicit mobile rules */
    .kb-items-wrapper .kb-item:nth-child(even) {
        border-right: none !important;
    }

    .kb-items-wrapper .kb-item:nth-last-child(-n+2) {
        border-bottom: none !important;
    }
}

/* ========================================= */
/* Portfolio Stats Banner                    */
/* ========================================= */
.portfolio-section-dark {
    padding: 40px 0 !important;
    background-color: #0b1016 !important;
}

.portfolio-section-dark h2 {
    color: #ffffff !important;
}

.portfolio-header-title h3 {
    color: #999999 !important;
    /* Slightly visible but muted */
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.portfolio-header-title h3::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: var(--accent-color);
    margin-right: 8px;
    margin-bottom: 2px;
}

.portfolio-header-title h2 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
}

.portfolio-stats-wrapper {
    gap: 0 !important;
}

.portfolio-stat-item {
    text-align: center !important;
    border-right: 1px solid var(--accent-color) !important;
    flex: 1 1 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.portfolio-stat-item:last-child {
    border-right: none !important;
}

.portfolio-stat-item .stat-icon {
    font-size: 22px !important;
    color: var(--accent-color) !important;
    margin-bottom: 8px !important;
}

.portfolio-stat-item .ft-icon-box {
    border: 1px dashed var(--accent-color) !important;
    width: 32px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    color: var(--accent-color) !important;
    font-size: 12px !important;
    margin-bottom: 8px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.portfolio-stat-item .stat-number {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
    line-height: 1 !important;
}

.portfolio-stat-item .stat-text {
    font-size: 9px !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
}

.portfolio-stat-item .text-accent {
    color: var(--accent-color) !important;
}

@media (max-width: 992px) {
    .portfolio-stats-wrapper {
        flex-wrap: nowrap !important;
        overflow-x: hidden !important;
        justify-content: space-between !important;
        padding-bottom: 0 !important;
    }

    .portfolio-stat-item {
        flex: 1 1 20% !important;
        width: 20% !important;
        padding: 5px 2px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-bottom: none !important;
        margin-bottom: 0 !important;
    }

    .portfolio-stat-item:last-child {
        border-right: none !important;
    }

    .portfolio-stat-item .stat-number {
        font-size: 14px !important;
    }

    .portfolio-stat-item .stat-text {
        font-size: 7px !important;
        line-height: 1.1 !important;
    }

    .portfolio-stat-item .stat-icon {
        font-size: 14px !important;
        margin-bottom: 5px !important;
    }

    .portfolio-stat-item .ft-icon-box {
        width: 20px !important;
        height: 20px !important;
        font-size: 9px !important;
        margin-bottom: 5px !important;
    }
}

/* ========================================= */
/* Standards Banner                          */
/* ========================================= */
.standards-banner-section {
    background-color: #0b1016;
    width: 100%;
    display: flex;
    align-items: stretch;
    margin: 0;
    min-height: 110px;
}

.standards-ribbon {
    background: linear-gradient(90deg, #a8781a 0%, #c2912c 100%);
    padding: 0 45px 0 5vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%);
    min-width: clamp(280px, 20vw, 350px);
    flex-shrink: 0;
}

.standards-ribbon p {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

.standards-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 15px 40px 15px 10px;
}

.standards-items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.standard-item {
    display: flex;
    align-items: center;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    flex: 1 1 0;
}

.standard-item:last-child {
    border-right: none;
    padding-right: 0;
}

.standard-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-right: 15px;
}

.standard-text {
    display: flex;
    flex-direction: column;
}

.iso-title {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 2px;
}

.iso-desc {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.3;
}

.iso-desc.text-white {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .standards-banner-section {
        flex-direction: column;
    }

    .standards-ribbon {
        width: 100%;
        clip-path: none;
        padding: 20px;
        justify-content: center;
        text-align: center;
    }

    .standards-content {
        padding: 30px;
    }

    .standards-items {
        flex-wrap: wrap;
        gap: 30px;
    }

    .standard-item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 15px;
        padding-right: 0;
    }
}

/* ========================================= */
/* Portfolio Horizontal Card                 */
/* ========================================= */
.portfolio-horizontal-card {
    background-color: #0c1117;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
    width: auto;
    margin: 0 20px 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 120px;
    z-index: 10;
}

.portfolio-horizontal-card:nth-child(1) {
    top: 120px;
    z-index: 1;
}

.portfolio-horizontal-card:nth-child(2) {
    top: 140px;
    z-index: 2;
}

.portfolio-horizontal-card:nth-child(3) {
    top: 160px;
    z-index: 3;
}

.portfolio-card-image-col {
    padding: 0;
}

.portfolio-card-image {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-card-content-col {
    padding: 0;
    display: flex;
    align-items: center;
}

.portfolio-card-content {
    padding: 25px 30px;
    width: 100%;
}

.portfolio-status-badge {
    background-color: var(--accent-color);
    color: #000000;
    font-weight: 700;
    font-size: 11px;
    padding: 8px 25px 8px 15px;
    display: inline-block;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.portfolio-title {
    color: #ffffff !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portfolio-location {
    color: #ffffff !important;
    font-size: 16px !important;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-location i {
    font-size: 16px;
    color: #ffffff;
}

.portfolio-divider {
    border-top: 1px solid var(--accent-color);
    margin: 0 0 15px 0;
    opacity: 0.5;
}

.portfolio-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-features li {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

.portfolio-features li:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 35px;
    display: flex;
    justify-content: flex-start;
}

.feature-icon i {
    color: var(--accent-color);
    font-size: 20px;
}

@media (max-width: 991px) {
    .portfolio-card-image {
        min-height: 200px;
    }

    .portfolio-card-content {
        padding: 30px 20px;
    }

    .portfolio-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .standard-item {
        flex: 1 1 100%;
    }

    .portfolio-horizontal-card {
        margin: 0 5px 15px 5px !important;
    }

    .portfolio-card-image {
        min-height: 180px !important;
    }

    .portfolio-card-content {
        padding: 15px !important;
    }

    .portfolio-status-badge {
        font-size: 9px !important;
        padding: 5px 15px 5px 10px !important;
        margin-bottom: 15px !important;
    }

    .portfolio-title {
        font-size: 20px !important;
    }

    .portfolio-location {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }

    .portfolio-divider {
        margin: 15px 0 !important;
    }

    .portfolio-features li {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }

    .feature-icon {
        width: 35px !important;
        font-size: 14px !important;
    }
}

/* ========================================= */
/* Portfolio Gold Button                     */
/* ========================================= */
.btn-portfolio-gold {
    background-color: var(--accent-color) !important;
    color: #111 !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: none !important;
    border: none !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.btn-portfolio-gold:hover {
    background-color: #ffffff !important;
    color: #000 !important;
}

/* ========================================= */
/* Portfolio Page Simple Card Overrides      */
/* ========================================= */
.portfolio-page-wrapper {
    background-color: #ffffff;
    padding: 80px 0;
}

.portfolio-page-wrapper .portfolio-horizontal-card {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    margin-bottom: 40px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

/* ========================================= */
/* Team Header Styles                        */
/* ========================================= */
.team-header-section {
    padding: 60px 0 10px 0 !important;
}

.team-header-title {
    font-weight: 700 !important;
    font-size: 28px !important;
    color: #111 !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
}

.team-header-subtitle {
    font-size: 14px !important;
    color: #444 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
    max-width: 500px !important;
}

.team-header-icon {
    width: 30px !important;
    margin-right: 15px !important;
}

.team-usp-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    margin-bottom: 2px !important;
}

.team-usp-desc {
    font-size: 12px !important;
    color: #aaa !important;
    /* Light gray for dark bg */
    margin: 0 !important;
    line-height: 1.4 !important;
}

.team-usps-horizontal {
    display: flex !important;
    justify-content: flex-end !important;
    /* Align differently (right side) */
    align-items: flex-start !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    background: #111 !important;
    /* Dark bg */
    padding: 30px 40px !important;
    border-radius: 12px !important;
}

.team-usps-horizontal .usp-icon {
    width: 30px !important;
    height: 30px !important;
    background-color: var(--accent-color) !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    display: inline-block !important;
}

.hero-usps {
    flex-wrap: nowrap !important;
    margin-left: -70 !important;
    width: 80% !important;
}

.usp-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    /* Left align content inside USP */
    justify-content: flex-start !important;
    flex: 1 1 0% !important;
    text-align: left !important;
}

.usp-item i,
.usp-item .usp-icon {
    margin-bottom: 10px !important;
    margin-right: 0 !important;
}

/* ========================================= */
/* Org Chart (Team Page)                     */
/* ========================================= */
.org-chart-wrapper {
    position: relative;
    overflow-x: auto;
    /* Allow scrolling on smaller screens if needed before breakpoint */
}

.leadership-pill {
    display: inline-block;
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Base styles for rows */
.oc-row {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.oc-nodes {
    display: flex;
    justify-content: center;
    align-items: stretch !important;
    /* Force equal height for all cards in a row */
    gap: 15px !important;
    flex-wrap: nowrap;
    position: relative;
    padding-top: 15px;
}

/* Bracket styling */
.oc-bracket-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 15px;
    border-top: 2px solid var(--accent-color);
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
}

/* Connect up to bracket */
.oc-node {
    position: relative;
    flex: 0 0 auto;
    width: 220px !important;
}

.oc-node::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

.oc-spacer-node {
    width: 2px !important;
    padding: 0;
    margin: 0;
    visibility: hidden;
}

.oc-spacer-node::before {
    display: none;
}

.oc-spacer-node .oc-line-down {
    visibility: visible;
}

/* Dynamic bracket widths based on rows */
.oc-row-1 .oc-bracket-top {
    width: 470px !important;
    top: -15px;
    height: 30px;
}

/* Connect pill to row 1 bracket */
.oc-row-1::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    width: 2px;
    height: 15px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

/* Row 2 Bracket spans 5 nodes (4 nodes + 1 spacer) -> 4 pitches of 235px */
.oc-row-2 .oc-bracket-top {
    width: 940px !important;
}

/* Row 3 Bracket spans 5 nodes -> 4 pitches of 235px */
.oc-row-3 .oc-bracket-top {
    width: 940px !important;
}

/* Row 4 Bracket spans 3 nodes -> 2 pitches of 235px */
.oc-row-4 .oc-bracket-top {
    width: 470px !important;
}

/* Drop lines for next row */
.oc-line-down {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 2px;
    height: 30px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
}

/* Team Cards */
.oc-card {
    background: #f1f1f1 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #b3b3b3 !important;
    text-align: left !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.oc-card .oc-card-body {
    flex: 1 1 auto !important;
}

.oc-card-img {
    height: 160px !important;
    background-size: cover;
    background-position: top center;
    background-color: #d9d9d9;
}

.oc-card-body {
    padding: 10px 8px !important;
}

.oc-name {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    margin-bottom: 3px !important;
    line-height: 1.2 !important;
}

.oc-role {
    font-size: 10px !important;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
}

.oc-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 8px;
}

.oc-meta li {
    font-size: 9px !important;
    color: #444;
    font-weight: 600;
    margin-bottom: 3px !important;
    display: flex;
    align-items: flex-start;
    line-height: 1.2;
}

.oc-meta li i {
    color: var(--accent-color);
    margin-right: 4px !important;
    margin-top: 2px;
    font-size: 9px !important;
}

/* Testimonial Card Background */
.testimonial-card {
    background-image: url('../assets/homepage/background.png') !important;
    background-color: #f4f6f8 !important;
    background-position: right bottom !important;
    background-repeat: no-repeat !important;
    background-size: 240px auto !important;
}

/* Responsive (Collapse Tree on small screens) */
@media (max-width: 1450px) {
    .oc-nodes {
        flex-wrap: wrap;
        gap: 20px;
        padding-top: 0;
    }

    .oc-node,
    .oc-row-1::before,
    .oc-bracket-top,
    .oc-line-down,
    .oc-node::before {
        display: none !important;
    }

    .oc-node {
        display: block !important;
        width: 300px !important;
    }

    .oc-spacer-node {
        display: none !important;
    }

    .oc-row {
        margin-bottom: 20px;
    }
}

/* Our Strength Section */
.our-strength-section {
    width: 100% !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.strength-top-banner {
    display: flex !important;
    background-color: #0c0c0c !important;
    position: relative !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
}

.strength-title-box {
    background: linear-gradient(135deg, #a67c00 0%, #d89f3c 100%) !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 25px !important;
    width: 250px !important;
    flex-shrink: 0 !important;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%) !important;
    z-index: 2 !important;
    margin-right: -25px !important;
}

.strength-title h2 {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-family: inherit !important;
    text-align: left !important;
}

.strength-features-container {
    flex-grow: 1 !important;
    display: flex !important;
    align-items: stretch !important;
    padding-left: 15px !important;
    margin: 0 !important;
}

.strength-item {
    display: flex !important;
    align-items: flex-start !important;
    padding: 20px 15px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    flex: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

.strength-item:last-child {
    border-right: none !important;
}

.strength-icon {
    font-size: 26px !important;
    color: #d29a43 !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    margin-top: 2px !important;
}

.strength-content h3 {
    color: #d29a43 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-family: inherit !important;
    line-height: 1.3 !important;
    text-align: left !important;
}

.strength-content p {
    color: #ccc !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    font-family: inherit !important;
    text-align: left !important;
}

.strength-bottom-banner {
    background-color: #f8f6f0 !important;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../assets/homepage/background.png') repeat-x bottom center !important;
    background-size: contain !important;
    padding: 40px 20px !important;
    text-align: center !important;
    margin: 0 !important;
}

.strength-bottom-banner h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111 !important;
    letter-spacing: 1px !important;
    margin-bottom: 5px !important;
    font-family: inherit !important;
}

.strength-bottom-banner h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #d29a43 !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    font-family: inherit !important;
}

.strength-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.strength-divider .line {
    height: 2px !important;
    width: 120px !important;
    background: #d29a43 !important;
}

.strength-divider .circle {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #d29a43 !important;
    margin: 0 15px !important;
}

@media (max-width: 991px) {
    .strength-top-banner {
        flex-direction: column !important;
    }

    .strength-title-box {
        width: 100% !important;
        clip-path: none !important;
        margin-right: 0 !important;
        padding: 30px !important;
        justify-content: center !important;
    }

    .strength-title h2 {
        text-align: center !important;
    }

    .strength-features-container {
        padding-left: 0 !important;
        flex-direction: column !important;
    }

    .strength-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 30px 20px !important;
        width: 100% !important;
        flex: none !important;
    }

    .strength-item:last-child {
        border-bottom: none !important;
    }
}

/* ==============================================================
   Founder Message V2 Overrides (Forceful Styles)
============================================================== */
.founder-left-text h3 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    text-transform: uppercase !important;
}

.founder-left-text h3 .highlight {
    color: var(--accent-color) !important;
    font-weight: 700 !important;
}

.founder-mid-header h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.founder-mid-content p {
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
}

.founder-mid-content .highlight-quote {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-top: 15px !important;
}

.quote-icon-top,
.quote-icon-bottom {
    font-size: 22px !important;
}

.founder-nameplate-v2 {
    padding: 25px 30px !important;
}

.founder-nameplate-v2 .signature {
    font-size: 24px !important;
    margin-right: 15px !important;
    flex-shrink: 0 !important;
}

.founder-nameplate-v2 .details h4 {
    font-size: 13px !important;
    margin-bottom: 2px !important;
}

.founder-nameplate-v2 .details p {
    font-size: 9px !important;
    line-height: 1.2 !important;
}

/* === Moved from custom.css === */

/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Amika Infratech
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. What We Do css
08. Our Story css
09. Our Features css
10. Our Pricing Plans css
11. Our Projects css
12. CTA Box css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. 404 Error Page css
33. Responsive css
34. Home - Version 2 css
35. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #0D0D0D;
    --secondary-color: #F5F5F5;
    --bg-color: #FEFEFE;
    --text-color: #000000;
    --accent-color: #BA9731;
    --white-color: #FEFEFE;
    --divider-color: #0D0D0D1A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Montserrat", sans-serif;
    --accent-font: "Montserrat", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 1.1em;
    color: var(--primary-color);
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}







.btn-default:hover:before {
    background-color: var(--accent-color);
    background-image: url('../images/arrow-primary.svg');
}





.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
    background-color: var(--primary-color);
    background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
    background-color: var(--white-color);
}

.readmore-btn {
    font-family: var(--accent-font);
    position: relative;
    display: inline-block;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
    text-transform: capitalize;
    padding-right: 34px;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: 0px;
    height: 24px;
    width: 24px;
    background-color: var(--accent-color);
    border-radius: 100px;
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    transform: translateY(-50%) rotate(0deg);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: none !important;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.dark-section {
    background-color: var(--primary-color);
    background-image: url('../images/dark-section-bg-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-row {
    margin-bottom: 40px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: -20px;
}

.section-title h3,
.section-title>p:first-child {
    position: relative;
    display: inline-block;
    font-size: 14px !important;
    line-height: 1.2em;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding-left: 16px;
    margin-bottom: 5px;
}

.section-title h3::before,
.section-title>p:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.section-title h1 {
    font-size: 44px;
    letter-spacing: -0.02em;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 38px;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    background: var(--primary-color);
}

.navbar {
    align-items: center;
    padding: 10px 0;
    background: #4a4a4aa8;
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0 10px;
    position: relative;
}

.main-menu ul li a {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color);
    padding: 12px 10px !important;
    background: transparent;
    border-radius: 0px;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--primary-color) !important;
    padding: 6px 20px !important;
    transition: all 0.4s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--accent-color) !important;
    background-color: #f8f9fa !important;
    padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.slicknav_btn.slicknav_open .slicknav_icon {
    position: relative !important;
    width: 22px !important;
    height: 18px !important;
}

.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    margin: 0 !important;
    margin-top: -1.5px !important;
    transition: all 0.25s ease-in-out !important;
}

.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(1) {
    transform: rotate(45deg) !important;
}

.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(2) {
    opacity: 0 !important;
}

.slicknav_btn.slicknav_open .slicknav_icon .slicknav_icon-bar:nth-child(3) {
    transform: rotate(-45deg) !important;
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

/* Hide Bootstrap's default dropdown caret in mobile menu since slicknav provides its own arrow */
.slicknav_menu .dropdown-toggle::after,
.slicknav_nav .dropdown-toggle::after,
.slicknav_menu .dropdown-toggle::before,
.slicknav_nav .dropdown-toggle::before {
    display: none !important;
    content: none !important;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after,
.slicknav_open>.slicknav_row .slicknav_arrow:after,
li.slicknav_open>a .slicknav_arrow:after,
li.slicknav_open>.slicknav_row .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--white-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background-image: url('../assets/homepage/hero%20section.webp');
    padding: 180px 0 100px;
    opacity: 1 !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 50px;
}

.video-play-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.video-play-button a {
    position: relative;
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a {
    background: var(--accent-color);
}

.video-play-button a:before,
.video-play-button a:after {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 100%;
    height: 100%;
    border: 32px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 14px;
    color: var(--white-color);
    margin-left: 2px;
    transition: all 0.3s ease-in-out;
}

.video-play-button:hover a i {
    color: var(--primary-color);
}

.video-play-button h3 {
    font-size: 18px;
    color: var(--white-color);
}

.hero .year-experience-circle {
    text-align: center;
}

.year-experience-circle img {
    width: 100%;
    max-width: 130px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-info-box {
    position: relative;
    margin-top: -145px;
    z-index: 2;
}

.hero-info-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-info-item {
    position: relative;
    width: calc(33.33% - 20px);
    border-radius: 10px;
    overflow: hidden;
}

.hero-info-item.box-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: var(--secondary-color);
    padding: 10px;
}

.hero-info-content-box {
    width: calc(48% - 5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.hero-info-item-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
}

.hero-info-item-content ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 5px;
    padding: 5px 14px;
}

.hero-info-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.hero-info-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 25px;
}

.hero-info-image {
    width: calc(52% - 5px);
}

.hero-info-image figure,
.hero-info-item.box-2 figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.hero-info-image img,
.hero-info-item.box-2 img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.62;
    object-fit: cover;
    border-radius: 10px;
}

.hero-info-item.box-3 {
    background: var(--primary-color);
    padding: 40px;
}

.hero-info-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.hero-info-header .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-info-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.hero-info-item:hover .hero-info-header .icon-box::before {
    transform: rotate(0) scale(1);
}

.hero-info-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.satisfy-client-images {
    display: flex;
    align-items: center;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -14px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child {
    margin: 0;
}

.satisfy-client-image figure {
    display: block;
}

.satisfy-client-image figure img {
    width: 100%;
    max-width: 48px;
    border-radius: 50%;
}

.satisfy-client-image.add-more {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
    font-size: 20px;
    color: var(--primary-color);
    line-height: normal;
    transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
}

.hero-info-counter-box h3 {
    font-size: 20px;
    color: var(--white-color);
    line-height: 1.4em;
    margin-bottom: 10px;
}

.hero-info-counter-box h2 {
    font-size: 42px;
    color: var(--white-color);
}

.hero-info-bg-icon {
    position: absolute;
    bottom: -15px;
    right: -15px;
}

.hero-info-bg-icon img {
    width: 100%;
    max-width: 100px;
}

/************************************/
/*** 	   05. About Us css 	  ***/
/************************************/

.about-us {
    padding: 50px 0;
}

.about-us-image-box {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.about-us-image-box-1 {
    width: 74%;
}

.about-us-image {
    height: 100%;
    border-radius: 10px;
}

.about-us-image figure {
    height: 100%;
    display: block;
    border-radius: 10px;
}

.about-us-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1.3;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-image-box-2 {
    position: relative;
    width: 26%;
    z-index: 1;
}

.about-us-image-box-2 .about-us-image,
.about-us-image-box-2 .about-us-image figure,
.about-us-image-box-2 .about-us-image img {
    height: auto;
}

.about-us-image-box-2 .about-us-image {
    margin-top: 80px;
    margin-left: -150px;
}

.about-us-image-box-2 .about-us-image figure {
    border: 4px solid var(--white-color);
}

.about-us-image-box-2 .year-experience-circle {
    position: relative;
    display: inline-block;
    transform: translate(-50%, -50%);
    border: 4px solid var(--white-color);
    border-radius: 50%;
    z-index: 1;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: var(--secondary-color);
    border-left: 10px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px 40px 25px 30px;
}

.about-body-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 15px);
    gap: 20px;
}

.about-body-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-body-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-body-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.about-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-body-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-body-item-content {
    width: calc(100% - 80px);
}

.about-body-item-content h3 {
    font-size: 20px;
}

.about-body-item-content p {
    margin: 10px 0 0;
}

.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.about-us-footer-content {
    width: calc(53% - 15px);
}

.about-footer-content-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-footer-content-list ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--primary-color);
    padding-left: 16px;
    margin-bottom: 20px;
}

.about-footer-content-list ul li:last-child {
    margin-bottom: 0;
}

.about-footer-content-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.about-us-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.about-us-video-box {
    position: relative;
    width: calc(47% - 15px);
}

.about-video-image {
    height: 100%;
}

.about-video-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about-video-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    border-radius: 10px;
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-video-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.65;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}

.about-us-video-box:hover .about-video-image img {
    transform: scale(1.08);
}

.about-us-video-box .video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.about-us-video-box .video-play-button a {
    height: 46px;
    width: 46px;
    background: var(--accent-color);
}

.about-us-video-box .video-play-button a i {
    font-size: 16px;
    color: var(--primary-color);
}

.about-us-video-box .video-play-button a:before,
.about-us-video-box .video-play-button a:after {
    border-width: 36px;
}

/************************************/
/*** 	06. Our Servicves css 	  ***/
/************************************/

.our-services {
    background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 50px 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    background: var(--white-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
}

.service-item-header {
    padding: 15px;
}

.service-item-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
}

.service-item-title h2,
.service-item-title .h2,
.service-item-title h3:not(.h2),
.service-item-title .h3 {
    font-size: 20px !important;
    line-height: 1.3em !important;
}

.service-item-title h2 a,
.service-item-title .h2 a {
    color: inherit;
}

.service-item-content {
    border-top: 1px solid var(--divider-color);
    margin-top: 8px;
    padding-top: 8px;
}

.service-item-content p {
    margin: 0;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.service-image-box {
    position: relative;
}

.service-item-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.service-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.service-item.active .service-item-image img,
.service-item:hover .service-item-image img {
    transform: scale(1.08);
}

.service-item-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.service-item.active .service-item-btn,
.service-item:hover .service-item-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.service-item-btn a {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-item-btn a:hover {
    background: var(--white-color);
}

.service-item-btn a img {
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
    transform: rotate(-45deg);
}

.service-item-btn a:hover img {
    transform: rotate(0);
}

.service-benefit-box {
    margin-top: 30px;
}

.service-benefit-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 25px;
    max-width: 900px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.service-benefit-list ul li {
    position: relative;
    background: var(--white-color);
    font-size: 16px;
    line-height: 1.5em;
    color: var(--primary-color);
    padding: 10px 16px 10px 32px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

.service-benefit-list ul li:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.service-benefit-list ul li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-footer-text p span {
    font-size: 14px;
    font-weight: 500;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.section-footer-text ul {
    width: 100%;
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
}

.section-footer-text ul li {
    display: inline-block;
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--primary-color);
    margin-right: 5px;
}

.section-footer-text ul li:last-child {
    margin: 0;
}

.section-footer-text ul li i {
    color: var(--accent-color);
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
    color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}

.section-footer-text.section-footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
    max-width: 14px;
}

.section-footer-text.section-satisfy-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img ul {
    margin: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
    border-color: var(--white-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
    max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
    width: 32px;
    height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
    max-width: 16px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more i {
    font-size: 16px;
}

/************************************/
/*** 	   07. What We Do css 	  ***/
/************************************/

.what-we-do {
    padding: 50px 0;
}

.what-we-do-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.what-we-do-item {
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
}

.what-we-do-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.what-we-do-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-do-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.what-we-do-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.what-we-do-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-do-item-body h3 {
    font-size: 20px;
}

.what-we-do-item-body p {
    margin: 10px 0 0;
}

.what-we-do-item-body ul {
    border-top: 1px solid var(--divider-color);
    list-style: none;
    margin: 20px 0 0;
    padding: 20px 0 0;
}

.what-we-do-item-body ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 16px;
    margin-bottom: 15px;
}

.what-we-do-item-body ul li:last-child {
    margin-bottom: 0;
}

.what-we-do-item-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.what-we-do-btn {
    margin-top: 40px;
}

.what-we-do-image {
    margin-left: 15px;
}

.what-we-do-image figure {
    display: block;
    border-radius: 10px;
}

.what-we-do-image img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border-radius: 10px;
}

.what-we-do .section-footer-text {
    margin-top: 60px;
}

/************************************/
/*** 	   08. Our Story css 	  ***/
/************************************/

.our-story {
    position: relative;
    background-image: url('../images/our-story-bg-image.jpg');
    padding: 50px 0;
}

.our-story::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-story .container {
    position: relative;
    z-index: 1;
}

.our-story-content {
    max-width: 990px;
    text-align: center;
    margin: 0 auto;
}

.our-story-content .section-title {
    margin-bottom: 0;
}

.watch-video-circle {
    margin-top: 180px;
}

.watch-video-circle a {
    display: inline-block;
    border-radius: 50%;
    cursor: none;
}

.watch-video-circle a img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.watch-video-circle a:hover img {
    animation-play-state: paused;
}

/************************************/
/*** 	 09. Our Features css 	  ***/
/************************************/

.our-features {
    padding: 50px 0;
}

.our-features .section-row .section-title.section-title-center {
    max-width: 1050px;
}

.our-features .section-title h2 .feature-title-img-1 {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: var(--accent-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.our-features .section-title h2 .feature-title-img-1 img {
    width: 100%;
    max-width: 22px;
}

.our-features .section-title h2 .feature-title-img-2 img {
    width: 100%;
    max-width: 44px;
}

.our-features .section-title h2 .feature-title-img-3 {
    display: inline-block;
}

.our-features .section-title h2 .feature-title-img-3 img {
    width: 100%;
    max-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    margin-left: -8px;
}

.our-features .section-title h2 .feature-title-img-3 img:first-child {
    margin: 0;
}

.feature-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    gap: 60px;
    background: var(--secondary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.feature-item.box-1 {
    background: var(--primary-color);
}

.feature-item-shape-image figure {
    display: block;
    mask-image: url('../images/feature-item-image-shape-1.svg');
    background-image: url('../images/feature-item-image-shape-1.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 220px;
    height: 110px;
}

.feature-item-shape-image img {
    width: 100%;
    object-fit: cover;
}

.feature-item-content {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.feature-item-content h3 {
    font-size: 20px;
}

.feature-item-content p {
    margin: 10px 0 0;
}

.feature-item.box-1 .feature-item-content h3,
.feature-item.box-1 .feature-item-content p {
    color: var(--white-color);
}

.feature-item-content h2 {
    font-size: 54px;
    margin-bottom: 10px;
}

.feature-item-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-item-list ul li {
    position: relative;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 16px;
    margin-bottom: 15px;
}

.feature-item-list ul li:last-child {
    margin-bottom: 0;
}

.feature-item-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.feature-item.box-2 {
    flex-direction: initial;
    gap: 0;
}

.feature-item-info {
    width: 75%;
}

.feature-item-info-content p {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item-info-content h3 {
    font-size: 30px;
    line-height: 1.4em;
}

.feature-item-btn {
    margin-top: 40px;
}

.feature-item-btn .readmore-btn {
    text-decoration: underline;
}

.feature-item-image {
    width: 25%;
    text-align: right;
    align-content: end;
}

.feature-item-image figure {
    display: block;
    margin: 0 -40px -40px -100px;
}

.feature-item-image img {
    width: 100%;
    max-width: 250px;
}

.feature-item.box-3 {
    background: var(--accent-color);
}

.feature-item.box-3 .feature-item-content-box .feature-item-content {
    border-color: var(--divider-color);
}

.feature-item-counter-info p {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item-counter-info p:last-child {
    margin-bottom: 0;
}

.feature-item-tag-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-item-tag-list ul li {
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.5em;
    border: 1px solid var(--divider-color);
    border-radius: 5px;
    padding: 6px 14px;
}

/************************************/
/***  10. Our Pricing Plans css   ***/
/************************************/

.our-pricing {
    padding: 50px 0;
}

.pricing-item {
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 20px;
}

.pricing-item-header {
    position: relative;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 10px;
    padding: 30px;
}

.pricing-item-header .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    overflow: hidden;
}

.pricing-item-header .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--bg-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.pricing-item:hover .pricing-item-header .icon-box::before {
    transform: rotate(0) scale(1);
}

.pricing-item-header .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.pricing-item-content p {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 15px;
}

.pricing-item-content h2 {
    font-size: 44px;
    color: var(--white-color);
}

.pricing-item-content h2 sub {
    font-size: 20px;
    bottom: 0;
}

.pricing-item-body {
    padding: 30px 20px 20px;
}

.pricing-item-list h3 {
    font-size: 20px;
    color: var(--white-color);
}

.pricing-item-list ul {
    list-style: none;
    border-top: 1px solid var(--dark-divider-color);
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.pricing-item-list ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 16px;
    margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.pricing-item-btn {
    margin-top: 30px;
}

.pricing-item-btn .pricing-item.highlighted-box .pricing-item-header {
    background: var(--accent-color);
}

.pricing-item.highlighted-box .pricing-item-header::before {
    content: 'Most Popular';
    font-family: var(--accent-font);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 5px;
    line-height: 1.5em;
    padding: 8px 14px;
}

.pricing-item.highlighted-box .pricing-item-header .icon-box {
    background: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-item-header .icon-box img {
    filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box:hover .pricing-item-header .icon-box img {
    filter: brightness(0) invert(0);
}

.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-content h2 {
    color: var(--primary-color);
}

.pricing-benefit-list {
    margin-top: 30px;
}

.pricing-benefit-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
}

.pricing-benefit-list ul li {
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

/************************************/
/*** 	 11. Our Projects css 	  ***/
/************************************/

.our-projects {
    padding: 50px 0;
}

.project-nav {
    text-align: center;
    margin-bottom: 60px;
}

.project-nav ul {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 50px;
    padding: 0;
    margin: 0;
}

.project-nav ul li a {
    position: relative;
    font-size: 18px;
    line-height: 1.4em;
    text-transform: capitalize;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.project-nav ul li a:before {
    content: '';
    position: absolute;
    top: 9px;
    right: -28px;
    background-color: var(--divider-color);
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

.project-nav ul li:last-child a:before {
    display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover {
    color: var(--accent-color);
}

.project-item {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-item-image a,
.project-item-image figure {
    position: relative;
    display: block;
    cursor: none;
}

.project-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.00) 37.36%, var(--primary-color) 87.69%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.project-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1.128;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.project-item:hover .project-item-image img {
    transform: scale(1.08);
}

.project-item-content {
    position: absolute;
    bottom: 40px;
    right: 40px;
    left: 40px;
    z-index: 1;
}

.project-item-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

.project-item-content h2 a {
    color: inherit;
}

.project-item-content p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.project-item-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-item-btn {
    opacity: 1;
    transform: scale(1);
}

.project-item-btn a {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover {
    background: var(--accent-color);
}

.project-item-btn a img {
    width: 100%;
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover img {
    filter: brightness(0) invert(0);
}

.project-item-btn a:hover img {
    transform: rotate(0);
}

/************************************/
/*** 		12. CTA Box css		  ***/
/************************************/

.cta-box {
    position: relative;
    background-image: url('../images/cta-box-bg-img.jpg');
    padding: 150px 0;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-box .container {
    position: relative;
    z-index: 1;
}

.cta-box-content {
    margin-right: 4.167vw;
}

.cta-box-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 40px;
}

.cta-box-item {
    width: calc(50% - 20px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.cta-box-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-box-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.cta-box-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.cta-box-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.cta-box-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.cta-box-item-content {
    width: calc(100% - 80px);
}

.cta-box-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: var(--white-color);
}

.cta-box-btn {
    margin-top: 60px;
}

.cta-box-image {
    text-align: center;
    margin-top: -150px;
}

.cta-box-image figure {
    display: block;
}

.cta-box-image figure img {
    width: 100%;
    max-width: 165px;
}

/************************************/
/*** 	   13. Our FAQs css 	  ***/
/************************************/

.our-faqs-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    padding: 20px 0;
}

.faq-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
}

.faq-contact-box .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-contact-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.faq-contact-box:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.faq-contact-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.faq-contact-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.faq-contact-box-content {
    width: calc(100% - 70px)
}

.faq-contact-box-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.faq-contact-box-content p {
    margin-bottom: 0;
}

.faq-contact-box-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.faq-contact-box-content p a:hover {
    color: var(--accent-color);
}

.faq-accordion {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
}

.faq-accordion .accordion-item {
    position: relative;
    background: var(--bg-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-family: var(--accent-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    background: transparent;
    color: var(--primary-color);
    padding: 15px 45px 15px 20px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'FontAwesome';
    position: absolute;
    right: 30px;
    top: 35%;
    font-size: 20px;
    font-weight: 400;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
    border-top: 1px solid var(--divider-color);
    background: transparent;
    padding: 10px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

.faq-view-more-wrap {
    margin-top: 25px;
    text-align: center;
}

.faq-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--accent-font, 'Montserrat', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color, #BA9731);
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}

.faq-view-more-btn:hover,
.faq-view-more-btn:focus {
    color: var(--primary-color, #0D0D0D);
    text-decoration: underline;
    transform: translateY(2px);
}

.faq-view-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease-in-out;
}

.faq-view-more-btn:hover i {
    transform: translateY(3px);
}

/************************************/
/***   14. Our Testimonials css	  ***/
/************************************/

.our-testimonials {
    background: var(--secondary-color) url('../images/testimonial-image-bg.png') no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 50px 0;
}

.our-testimonial-content {
    position: sticky;
    top: 20px;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    background-color: var(--white-color);
    border-radius: 10px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
}

.testimonial-company-logo img {
    width: 100%;
    max-width: 170px;
}

.testimonial-item-content p {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-author-content {
    border-top: 1px solid var(--divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.testimonial-author-content h3 {
    font-size: 20px;
}

.testimonial-author-content p {
    margin: 5px 0 0 0;
}

.testimonial-slider .testimonial-pagination {
    text-align: center;
    display: flex;
    margin-top: 40px;
    padding-bottom: 2px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
    position: relative;
    height: 3px;
    width: 100%;
    background: var(--divider-color);
    border-radius: 0;
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: auto;
    right: 0;
    background: var(--accent-color);
    border-radius: 0;
    width: 0;
    height: 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
    width: 100%;
    right: auto;
    left: 0;
}

/************************************/
/*** 	   15. Our Blog css 	  ***/
/************************************/

.our-blog {
    padding: 100px 0 70px;
}

.post-item {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.post-featured-image a,
.post-featured-image figure {
    position: relative;
    display: block;
    cursor: none;
}

.post-featured-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    opacity: 40%;
    z-index: 1;
}

.post-featured-image img {
    width: 100%;
    aspect-ratio: 1 / 1.064;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.6s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.08);
}

.post-item-tags {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 1;
}

.post-item-tags a {
    display: inline-block;
    font-family: var(--accent-font);
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
    background: var(--divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 5px;
    padding: 5px 14px;
    transition: all 0.4s ease-in-out;
}

.post-item-tags a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.post-item-body {
    position: absolute;
    right: 40px;
    bottom: 40px;
    left: 40px;
    z-index: 1;
}

.post-content-box {
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.post-item-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-item-meta ul li {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
}

.post-item-content h2 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-btn a {
    color: var(--white-color);
}

/************************************/
/*** 	   16. Footer css   	  ***/
/************************************/

.main-footer {
    position: relative;
    background-image: url('../images/footer-bg-image.jpg');
    overflow: hidden;
}

.main-footer::before,
.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.main-footer::before {
    background: var(--primary-color);
    opacity: 85%;
}

.main-footer::after {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.footer-scrolling-ticker {
    position: relative;
    background: var(--accent-color);
    padding: 25px 0;
    z-index: 1;
}

.scrolling-ticker-box {
    --gap: 20px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 80s linear infinite;
}

.scrolling-content span {
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2em;
    color: var(--primary-color);
    text-transform: capitalize;
}

.scrolling-content span img {
    width: 100%;
    max-width: 30px;
    margin-right: 20px;
    animation: sparkelotate 3s linear infinite;
}

@keyframes sparkelotate {
    0% {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.5);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.footer-box {
    position: relative;
    padding: 100px 0 0;
    z-index: 1;
}

.about-footer {
    max-width: 380px;
}

.footer-logo img {
    width: 50%;
}

.footer-working-hours {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.footer-working-hours h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-working-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-working-hours ul li {
    color: var(--white-color);
    font-weight: 500;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.footer-working-hours ul li:last-child {
    margin-bottom: 0;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 30px;
}

.footer-links h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p {
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p:last-child {
    margin-bottom: 0;
}

.footer-location-info {
    max-width: calc(26% - 20px);
}

.footer-contact-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-links ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--white-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-divider-color);
}

.footer-contact-links ul li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.footer-contact-links ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.footer-contact-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-links ul li a:hover {
    color: var(--accent-color);
}

.footer-newsletter-form {
    max-width: calc(40% - 20px);
}

.footer-newsletter-form .form-group {
    display: flex;
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
    opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 2px;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
    transform: rotate(45deg);
}

.footer-social-links {
    width: 100%;
    padding-top: 40px;
    border-top: 1px solid var(--dark-divider-color);
}

.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    line-height: normal;
    background: var(--dark-divider-color);
    backdrop-filter: blur(180px);
    -webkit-backdrop-filter: blur(180px);
    border-radius: 10px;
    padding: 10px 16px;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-links ul li a i {
    font-size: 20px;
    line-height: normal;
    color: inherit;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px 30px;
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0 60px;
    margin-top: 60px;
}

.footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu ul li {
    color: var(--white-color);
    text-transform: capitalize;
    line-height: 1.5em;
}

.footer-menu ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li a:hover {
    color: var(--accent-color);
}

.footer-copyright-text p {
    color: var(--white-color);
    margin: 0;
}

/************************************/
/*** 	 17. About Us Page css 	  ***/
/************************************/

.page-header {
    position: relative;
    background: url('../images/Construction-image.png') no-repeat;
    background-position: center bottom !important;
    background-size: cover;
    padding: 240px 0 140px;
    background-attachment: scroll !important;
}

.page-header.parallaxie {
    background-position: center bottom !important;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-box {
    text-align: center;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 44px;
    letter-spacing: -0.02em;
    color: var(--white-color);
    margin-bottom: 10px;
    cursor: none;
}

.page-header-box ol {
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.our-approach {
    padding: 50px 0;
}

.approach-item {
    position: relative;
    background-color: var(--dark-divider-color);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.approach-item .icon-box {
    position: absolute;
    top: -20px;
    right: -20px;
}

.approach-item .icon-box img {
    width: 100%;
    max-width: 90px;
}

.approach-item-image {
    margin-bottom: 30px;
}

.approach-item-image figure {
    display: block;
    mask-repeat: no-repeat;
    mask-size: cover;
    mask-position: center center;
    width: 100%;
    max-width: 80px;
}

.approach-item.box-1 .approach-item-image figure {
    mask-image: url('../images/approach-item-shape-1.svg');
    background-image: url('../images/approach-item-shape-1.svg');
}

.approach-item.box-2 .approach-item-image figure {
    mask-image: url('../images/approach-item-shape-2.svg');
    background-image: url('../images/approach-item-shape-2.svg');
}

.approach-item.box-3 .approach-item-image figure {
    mask-image: url('../images/approach-item-shape-3.svg');
    background-image: url('../images/approach-item-shape-3.svg');
}

.approach-item-image figure img {
    width: 100%;
    object-fit: cover;
}

.approach-item-content h3 {
    font-size: 24px;
    color: var(--white-color);
}

.approach-item-content p {
    color: var(--white-color);
    margin: 15px 0 0 0;
    font-size: 15px !important;
}

.approach-item-content ul {
    color: var(--white-color);
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.approach-item-content ul li {
    position: relative;
    line-height: 1.5em;
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 14px;
}

.approach-item-content ul li:last-child {
    margin-bottom: 0;
}

.approach-item-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.approach-item-list {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 25px;
    margin-top: 25px;
}

.approach-item-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.approach-item-list ul li {
    background-color: var(--dark-divider-color);
    padding: 12px 15px;
    border-radius: 5px;
    color: var(--white-color);
}

.our-values {
    padding: 50px 0;
}

.values-image-box {
    position: relative;
    height: 100%;
    padding: 30px 30px 0 0;
}

.values-image {
    height: 100%;
}

.values-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.values-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.15;
    object-fit: cover;
    border-radius: 10px;
}

.lets-together-circle {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.lets-together-circle a {
    display: inline-block;
    border: 5px solid var(--white-color);
    border-radius: 50%;
}

.lets-together-circle a img {
    width: 100%;
    max-width: 150px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.lets-together-circle a:hover img {
    animation-play-state: paused;
}

.value-counter-box {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.value-counter-box .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.value-counter-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.value-counter-box:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.value-counter-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.value-counter-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.value-counter-box-content {
    width: calc(100% - 75px);
}

.value-counter-box-content h2 {
    color: var(--white-color);
    font-size: 42px;
    line-height: 1em;
}

.value-counter-box-content p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.our-values-content {
    margin-left: 15px;
}

.skills-progress-bar {
    margin-bottom: 40px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
    line-height: normal;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
    font-family: var(--accent-font);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 100px;
}

.values-content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    padding-top: 50px;
    margin-top: 50px;
}

.values-item-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.values-author-image figure {
    display: block;
    border-radius: 50%;
}

.values-author-image img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.values-author-content h3 {
    font-size: 20px;
}

.values-author-content p {
    margin: 5px 0 0 0;
}

.our-team {
    padding: 50px 0;
}

.team-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.team-item-image a {
    display: block;
    cursor: none;
}

.team-item-image figure {
    position: relative;
    display: block;
    border-radius: 10px;
}

.team-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.71%, rgba(0, 0, 0, 0.80) 85.3%);
    z-index: 1;
}

.team-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    /* Reduced image height */
    object-fit: cover;
    transition: all 0.6s ease-in-out;
    border-radius: 10px;
}

.team-item:hover .team-item-image img {
    transform: scale(1.08);
}

.team-item-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    text-align: center;
    z-index: 1;
}

.team-item-content h3 {
    font-size: 20px !important;
    /* Reduced font size */
    color: var(--white-color);
    margin-bottom: 4px;
}

.team-item-content h3 a {
    color: inherit;
}

.team-item-content p {
    color: var(--white-color);
    font-size: 14px !important;
    /* Reduced font size */
    margin: 0;
}

.team-social-list {
    position: absolute;
    right: 20px;
    left: 20px;
    top: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.team-social-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-social-list ul li a {
    background: var(--white-color);
    border-radius: 50%;
    color: var(--accent-color);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list ul li a i {
    font-size: 18px;
    color: inherit;
}

.team-social-list ul li a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/************************************/
/*** 	 18. Services Page css 	  ***/
/************************************/

.page-services {
    padding: 50px 0 70px;
}

.page-services .service-item {
    background-color: var(--secondary-color);
}

/************************************/
/*** 	19. Service Single css 	  ***/
/************************************/

.page-service-single {
    padding: 50px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.page-category-list {
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-category-list h3 {
    font-size: 20px;
    background: var(--accent-color);
    line-height: normal;
    padding: 20px 30px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-category-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-category-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: var(--text-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
    color: var(--primary-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
    transition: all 0.4s ease-in-out;
    transform: rotate(-45deg);
}

.page-category-list ul li a:hover::before {
    transform: rotate(0);
}

.sidebar-cta-box {
    background: var(--accent-color);
    border-radius: 10px;
    overflow: hidden;
}

.sidebar-cta-title {
    background: var(--primary-color);
    padding: 20px 40px;
}

.sidebar-cta-title h3 {
    font-size: 20px;
    line-height: normal;
    color: var(--white-color);
}

.sidebar-cta-body {
    padding: 40px;
}

.sidebar-cta-body-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-cta-body-content ul li {
    display: flex;
    align-items: center;
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--primary-color);
    align-items: center;
    margin-bottom: 25px;
}

.sidebar-cta-body-content ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-body-content ul li img {
    width: 100%;
    max-width: 30px;
    margin-right: 15px;
}

.sidebar-cta-body-content ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.sidebar-cta-body-content ul li a:hover {
    color: var(--white-color);
}

.sidebar-cta-body-image {
    margin-top: 50px;
    text-align: right;
}

.sidebar-cta-body-image figure {
    display: block;
    margin: 0 -40px -40px 0;
}

.sidebar-cta-body-image img {
    width: 100%;
    max-width: 240px;
}

.page-single-image {
    margin-bottom: 30px;
}

.page-single-image figure {
    display: block;
    border-radius: 10px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.568;
    object-fit: cover;
    border-radius: 10px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 38px;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.service-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 16px;
}

.service-entry ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.service-why-choose-box,
.service-offer-box,
.service-process-box {
    margin-top: 60px;
}

.service-why-choose-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-why-choose-item {
    display: flex;
    flex-wrap: wrap;
    width: calc(50% - 15px);
    gap: 20px;
}

.service-why-choose-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-why-choose-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.service-why-choose-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-why-choose-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-why-choose-item-content {
    width: calc(100% - 80px);
}

.service-offer-list {
    margin-top: 40px;
}

.service-offer-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-offer-item {
    position: relative;
    width: calc(50% - 15px);
}

.service-offer-item-image figure {
    display: block;
    border-radius: 10px;
}

.service-offer-item-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 60.52%, rgba(0, 0, 0, 0.80) 88.79%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-offer-item-image img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    border-radius: 10px;
}

.service-offer-item-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

.service-offer-item-content h3,
.service-offer-item-content p {
    color: var(--white-color);
}

.service-process-box {
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
}

.service-process-image-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-process-content,
.service-process-image {
    width: calc(50% - 15px);
}

.service-process-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.service-process-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-process-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-process-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-process-item:hover .icon-box::before {
    border-radius: 0%;
    transform: rotate(0) scale(1);
}

.service-process-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-process-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-process-item-content {
    width: calc(100% - 80px);
}

.service-process-image figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.service-process-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 10px;
}

/************************************/
/*** 	 20. Blog Archive css 	  ***/
/************************************/

.page-blog {
    padding: 50px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}

/************************************/
/*** 	21. Blog Single css 	  ***/
/************************************/

.page-single-post {
    padding: 50px 0;
}

.post-single-meta {
    margin-top: 5px;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 10px;
}

.post-content {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 600;
    line-height: 1.2em;
    margin: 0 0 0.42em;
}

.post-entry h1 {
    font-size: 44px;
}

.post-entry h2 {
    font-size: 38px;
}

.post-entry h3 {
    font-size: 32px;
}

.post-entry h4 {
    font-size: 26px;
}

.post-entry h5 {
    font-size: 20px;
}

.post-entry h6 {
    font-size: 18px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--accent-color) url('../images/icon-blockquote.svg');
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 10px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 22. Projects Page css 	  ***/
/************************************/

.page-projects {
    padding: 100px 0 70px;
}

/************************************/
/*** 	23. Project Single css 	  ***/
/************************************/

.page-project-single {
    padding: 50px 0;
}

.project-category-item-list {
    padding: 30px;
}

.project-category-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-category-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-category-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.project-category-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 16px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-category-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.project-category-item-content {
    width: calc(100% - 45px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.project-category-item-content h4 {
    font-size: 16px;
    line-height: normal;
}

.project-category-item-content p {
    margin-bottom: 0;
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry h2 {
    font-size: 38px;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.project-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
    margin-bottom: 0;
}

.project-features-box,
.project-process-box,
.project-issue-box {
    margin-top: 60px;
}

.project-feature-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-feature-item {
    width: calc(33.33% - 20px);
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
}

.project-feature-item-body .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.project-feature-item-body .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-feature-item:hover .project-feature-item-body .icon-box::before {
    transform: rotate(0) scale(1);
}

.project-feature-item-body .icon-box img {
    position: relative;
    width: 100%;
    max-width: 25px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-feature-item:hover .project-feature-item-body .icon-box img {
    filter: brightness(0) invert(1);
}

.project-feature-item-image {
    margin: 0 -30px -30px;
}

.project-feature-item-image figure {
    mask-image: url('../images/project-feature-image-shape.svg');
    background-image: url('../images/project-feature-image-shape.svg');
    display: block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.project-feature-item-image img {
    width: 100%;
    object-fit: cover;
}

.project-features-box .section-footer-text {
    margin-top: 60px;
}

.project-process-item-list {
    margin-top: 40px;
}

.project-process-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.project-process-item:last-child {
    margin-bottom: 0;
}

.project-process-item-no {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-process-item-no::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.project-process-item:hover .project-process-item-no::before {
    transform: rotate(0) scale(1);
}

.project-process-item-no h4 {
    position: relative;
    font-size: 26px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-process-item:hover .project-process-item-no h4 {
    color: var(--white-color);
}

.project-process-item-content {
    width: calc(100% - 80px);
}

.project-issue-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    margin-top: 40px;
}

.project-issue-box-item {
    position: relative;
    width: calc(50% - 30px);
}

.project-issue-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background: var(--divider-color);
    width: 1px;
    height: 100%;
}

.project-issue-box-item:nth-child(2n + 2):before,
.project-issue-box-item:last-child:before {
    display: none;
}

.project-issue-box-title {
    margin-bottom: 30px;
}

.project-issue-item {
    margin-bottom: 25px;
}

.project-issue-item:last-child {
    margin-bottom: 0;
}

.project-issue-item h4 {
    position: relative;
    font-size: 16px;
    line-height: normal;
    padding-left: 25px;
    margin-bottom: 10px;
}

.project-issue-item h4::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 3px;
    left: 0;
}

/************************************/
/*** 	  24. Team Page css 	  ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

/************************************/
/*** 	25. Team Single css 	  ***/
/************************************/

.page-team-single {
    padding: 50px 0;
}

.team-sidebar-box {
    border-radius: 10px;
    overflow: hidden;
}

.team-sidebar-image figure {
    display: block;
}

.team-sidebar-image img {
    width: 100%;
    aspect-ratio: 1 / 1.03;
    object-fit: cover;
}

.team-sidebar-body {
    background-color: var(--secondary-color);
    padding: 30px;
}

.team-sidebar-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-sidebar-body ul li {
    width: 100%;
    display: inline-flex;
    gap: 10px;
    line-height: 1.4em;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.team-sidebar-body ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-sidebar-body ul li span {
    min-width: 30%;
    font-family: var(--accent-font);
    text-transform: capitalize;
    font-weight: 600;
    color: var(--primary-color);
}

.team-sidebar-footer {
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
}

.team-sidebar-footer h3 {
    font-size: 16px;
    min-width: 30%;
}

.team-sidebar-footer ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-sidebar-footer ul li a {
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.team-sidebar-footer ul li a:hover {
    background-color: var(--primary-color);
}

.team-sidebar-footer ul li a i {
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li a:hover i {
    color: var(--accent-color);
}

.team-member-about,
.team-experience-box,
.team-member-info-box {
    margin-bottom: 60px;
}

.team-member-about .section-title {
    margin-bottom: 0;
}

.team-experience-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-experience-item {
    width: calc(50% - 15px);
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.team-experience-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-experience-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.team-experience-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.team-experience-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-experience-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.team-experience-item-content {
    width: calc(100% - 55px);
}

.team-experience-item-content h3 {
    font-size: 20px;
}

.team-member-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 50px;
}

.team-skills-box {
    width: calc(48% - 25px);
}

.team-values-info {
    width: calc(52% - 25px);
}

.team-values-info-list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.team-values-info-list ul li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 1.5em;
    margin-bottom: 30px;
    padding-left: 25px;
}

.team-values-info-list ul li:last-child {
    margin-bottom: 0;
}

.team-values-info-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 16px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.team-values-info-list ul li span {
    font-family: var(--accent-font);
    width: 36%;
    font-weight: 600;
    color: var(--primary-color);
}

.team-contact-form.contact-us-form {
    margin: 0;
}

/************************************/
/*** 	 26. Pricing Page css 	  ***/
/************************************/

.page-pricing {
    padding: 50px 0;
}

.page-pricing .pricing-item {
    background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header {
    background-color: var(--white-color);
}

.page-pricing .pricing-item-header .icon-box::before {
    background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header p,
.page-pricing .pricing-item-header h2 sub,
.page-pricing .pricing-item-list ul li,
.page-pricing .pricing-benefit-list ul li {
    color: var(--text-color);
}

.page-pricing .pricing-item-header h2,
.page-pricing .pricing-item-list h3,
.page-pricing .pricing-item.highlighted-box .pricing-item-header h2 sub {
    color: var(--primary-color);
}

.page-pricing .pricing-item-list ul {
    border-color: var(--divider-color);
}

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

.page-testimonials {
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
    background-color: var(--secondary-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

/************************************/
/*** 	 28. Image Gallery css 	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 12px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 12px;
}

/************************************/
/*** 	29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 10px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    width: 100%;
    aspect-ratio: 1 / 0.81;
    object-fit: cover;
    border-radius: 10px;
}

/************************************/
/*** 	 30. FAQs Page css 		  ***/
/************************************/

.page-faqs {
    padding: 50px 0;
}

.page-faqs-catagery .page-single-faqs {
    margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child {
    margin-bottom: 0px;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
    padding: 80px 0;
}

.contact-info-list {
    margin-top: 20px !important;
}

.contact-info-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.contact-info-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}

.contact-info-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.contact-info-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 22px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.contact-info-item-content {
    width: calc(100% - 80px);
}

.contact-info-item-content h3 {
    font-size: 20px;
}

.contact-info-item-content p {
    margin: 10px 0 0;
}

.contact-info-item-content p a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
    color: var(--accent-color);
}

.contact-us-form {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 40px;
    margin-left: 40px;
}


.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.125em;
    color: var(--text-color);
    background: var(--white-color);
    border: none;
    border-radius: 10px;
    padding: 21px 20px;
    box-shadow: none;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    width: 100%;
    height: 400px;
}

/************************************/
/***   32. 404 Error Page css	  ***/
/************************************/

.error-page {
    padding: 100px 0px;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 830px;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1440px) {

    .container {
        max-width: 1300px;
    }

    .hero-info-content-box {
        padding: 10px;
    }

    .hero-info-item.box-3 {
        padding: 30px;
    }

    .about-us-body {
        padding: 25px 30px 25px 20px;
    }

    .about-us-footer {
        gap: 20px;
    }

    .about-us-footer-content {
        width: calc(56% - 10px);
    }

    .about-footer-content-list ul li {
        margin-bottom: 15px;
    }

    .about-us-video-box {
        width: calc(44% - 10px);
    }

    .service-item-header {
        padding: 5px;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        margin-bottom: 30px;
    }

    .our-story {
        padding: 150px 0;
    }

    .watch-video-circle {
        margin-top: 150px;
    }

    .feature-item {
        padding: 30px;
    }

    .feature-item-info-content h3 {
        font-size: 26px;
    }

    .feature-item-image figure {
        margin: 0 -30px -30px -100px;
    }

    .pricing-item-header {
        padding: 20px;
    }

    .pricing-item-body {
        padding: 30px 10px 10px;
    }

    .cta-box {
        padding: 50px 0;
    }

    .cta-box-image {
        margin-top: -100px;
    }

    .cta-box-image figure img {
        max-width: 150px;
    }

    .faq-accordion {
        padding: 30px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 30px;
    }

    .testimonial-item {
        min-height: 470px;
        padding: 30px;
    }

    .testimonial-item-content p {
        font-size: 18px;
    }

    .post-item-tags {
        top: 30px;
        left: 30px;
    }

    .post-item-body {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }

    .approach-item {
        padding: 30px;
    }

    .approach-item .icon-box img {
        max-width: 100px;
    }

    .approach-item-image {
        margin-bottom: 60px;
    }

    .value-counter-box {
        padding: 20px;
    }

    .skills-progress-bar {
        margin-bottom: 30px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 15px;
    }

    .values-content-footer {
        padding-top: 40px;
        margin-top: 40px;
    }

    .page-category-list h3,
    .page-category-list ul {
        padding: 20px;
    }

    .sidebar-cta-title {
        padding: 20px;
    }

    .sidebar-cta-body {
        padding: 30px;
    }

    .sidebar-cta-body-image figure {
        margin: 0 -30px -30px 0;
    }

    .post-content {
        max-width: 1100px;
    }

    .project-category-item-list {
        padding: 20px;
    }

    .project-feature-item {
        padding: 20px;
    }

    .project-feature-item-image {
        margin: 0 -20px -20px;
    }

    .team-experience-item-list {
        gap: 20px;
    }

    .team-experience-item {
        width: calc(50% - 10px);
        padding: 12px;
        gap: 10px;
    }

    .team-experience-item-content {
        width: calc(100% - 50px);
    }

    .team-skills-box,
    .team-values-info {
        width: 100%;
    }

    .team-values-info-list ul li {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1024px) {

    .main-menu ul li {
        margin: 0px;
    }

    .hero-info-item {
        width: calc(50% - 15px);
    }

    .hero-info-item.box-1 {
        width: 100%;
    }

    .about-us-image-box {
        height: auto;
        margin: 0 0 30px;
    }

    .about-us-image,
    .about-us-image figure,
    .about-us-image img {
        height: auto;
    }

    .about-us-image-box-1 .about-us-image img {
        aspect-ratio: 1 / 1.02;
    }

    .about-us-image-box-2 .about-us-image img {
        aspect-ratio: 1 / 1.05;
    }

    .about-video-image img {
        aspect-ratio: 1 / 0.5;
    }

    .what-we-do-content {
        margin-bottom: 30px;
    }

    .what-we-do-image {
        max-width: 540px;
        margin: 0 auto;
    }

    .watch-video-circle {
        margin-top: 100px;
    }

    .feature-item {
        gap: 30px;
    }

    .feature-item-shape-image figure {
        width: 170px;
        height: 85px;
    }

    .our-faqs-content {
        height: auto;
        padding: 0;
        margin-bottom: 30px;
    }

    .our-testimonials {
        background-size: 400px auto;
    }

    .our-testimonial-content {
        position: initial;
        margin-bottom: 40px;
    }

    .testimonial-item {
        min-height: 400px;
    }

    .testimonial-author-content {
        margin-top: 20px;
        padding-top: 20px;
    }

    .about-footer {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .footer-working-hours {
        margin-top: 20px;
        padding-top: 20px;
    }

    .footer-links-box {
        gap: 30px;
    }

    .footer-social-links {
        padding-top: 30px;
    }

    .values-image-box {
        margin: 0 0 30px 0;
        height: auto;
    }

    .values-image {
        height: auto;
    }

    .values-image img {
        height: auto;
        aspect-ratio: 1 / 0.7;
    }

    .our-values-content {
        margin-left: 0;
    }

    .team-item-image img {
        aspect-ratio: 1 / 1.15;
    }

    .team-item-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .page-single-sidebar {
        margin: 0;
    }

    .page-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .sidebar-cta-body {
        padding: 20px;
    }

    .sidebar-cta-body-content ul li {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .sidebar-cta-body-content ul li img {
        max-width: 24px;
        margin-right: 10px;
    }

    .sidebar-cta-body-image figure {
        margin: 0 -20px -20px 0;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-why-choose-box,
    .service-offer-box,
    .service-process-box {
        margin-top: 40px;
    }

    .service-why-choose-item-list {
        margin-top: 30px;
        gap: 30px 20px;
    }

    .service-why-choose-item {
        width: calc(50% - 10px);
        gap: 15px;
    }

    .service-why-choose-item .icon-box {
        width: 45px;
        height: 45px;
    }

    .service-why-choose-item .icon-box img {
        max-width: 24px;
    }

    .service-why-choose-item-content {
        width: calc(100% - 60px);
    }

    .service-offer-item-list {
        margin-top: 30px;
    }

    .service-offer-item-image img {
        aspect-ratio: 1 / 0.95;
    }

    .service-offer-item-content {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .service-process-box {
        padding: 30px;
    }

    .service-process-image-content {
        margin-top: 30px;
    }

    .service-process-content,
    .service-process-image {
        width: 100%;
    }

    .service-process-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .project-category-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .project-category-item-content h4 {
        width: 100%;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-features-box,
    .project-process-box,
    .project-issue-box {
        margin-top: 40px;
    }

    .project-feature-item-list {
        margin-top: 30px;
    }

    .project-feature-item {
        width: calc(50% - 15px);
        gap: 30px;
    }

    .project-feature-item-body .icon-box {
        margin-bottom: 20px;
    }

    .project-features-box .section-footer-text {
        margin-top: 30px;
    }

    .project-process-item-list {
        margin-top: 30px;
    }

    .project-process-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .project-issue-boxes {
        margin-top: 30px;
    }

    .team-sidebar-body,
    .team-sidebar-footer {
        padding: 20px;
    }

    .team-sidebar-body ul li span {
        width: 34%;
    }

    .team-member-about,
    .team-experience-box,
    .team-member-info-box {
        margin-bottom: 60px;
    }

    .team-member-about,
    .team-experience-box,
    .team-member-info-box {
        margin-bottom: 40px;
    }

    .team-member-info-box {
        gap: 40px;
    }

    .contact-us-content {
        margin-bottom: 30px;
    }

    .contact-info-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .contact-us-form {
        margin-left: 0;
        padding: 35px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }
}

@media only screen and (max-width: 991px) {
    header.main-header {
        top: 0;
    }

    header.main-header .header-sticky.active {
        border-radius: 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .header-btn {
        display: none;
    }

    /* SlickNav Mobile Menu Drawer Overrides */
    .slicknav_menu {
        background: transparent !important;
        padding: 0 !important;
        position: static !important;
    }

    .slicknav_btn {
        background: var(--accent-color) !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        z-index: 100000 !important;
    }

    .slicknav_nav {
        position: fixed !important;
        top: 0 !important;
        right: -300px !important;
        width: 300px !important;
        height: 100vh !important;
        background: #ffffff !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) !important;
        z-index: 99999 !important;
        display: block !important;
        visibility: hidden !important;
        transition: right 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0) !important;
        padding: 40px 20px 20px 20px !important;
        margin: 0 !important;
        overflow-y: auto !important;
    }

    body.mobile-menu-active {
        overflow: hidden !important;
        height: 100vh !important;
    }

    .mobile-menu-active header.main-header,
    .mobile-menu-active .header-sticky,
    .mobile-menu-active .responsive-menu {
        z-index: 99999 !important;
    }

    .slicknav_nav a,
    .slicknav_nav .slicknav_row {
        color: var(--primary-color) !important;
    }

    .slicknav_nav .dropdown-toggle::after,
    .slicknav_nav .dropdown-toggle::before,
    .slicknav_menu .dropdown-toggle::after,
    .slicknav_menu .dropdown-toggle::before {
        display: none !important;
        content: none !important;
    }

    .slicknav_nav a:hover,
    .slicknav_nav a:focus,
    .slicknav_nav .slicknav_row:hover {
        background: transparent !important;
        color: var(--accent-color) !important;
    }

    /* Submenus nested dropdown styling in mobile drawer */
    .slicknav_nav ul {
        background: #f8f9fa !important;
        margin: 5px 0 !important;
        padding: 5px 0 5px 15px !important;
        border-radius: 4px !important;
        position: static !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        transform: none !important;
        transition: none !important;
    }

    .slicknav_nav ul a {
        font-size: 14px !important;
        color: var(--primary-color) !important;
    }

    .slicknav_nav ul a:hover {
        color: var(--accent-color) !important;
    }

    .mobile-menu-active .slicknav_nav {
        right: 0 !important;
        visibility: visible !important;
    }

    body.mobile-menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 99998 !important;
        transition: opacity 0.3s ease;
    }

    .drawer-logo-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
    }

    .drawer-close-btn {
        width: 38px !important;
        height: 38px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, 0.06) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 20px !important;
        color: #222222 !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
    }

    .drawer-close-btn:hover,
    .drawer-close-btn:focus {
        background: var(--accent-color) !important;
        color: #ffffff !important;
        transform: rotate(90deg) !important;
    }

    .drawer-logo {
        max-height: 75px !important;
        width: auto !important;
        display: inline-block !important;
    }

    .brand-logo-img {
        height: 52px !important;
        max-height: 52px !important;
        max-width: 190px !important;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-content-btn .section-btn {
        margin-top: 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .hero {
        padding: 140px 0 150px;
    }

    .year-experience-circle img {
        max-width: 100px;
    }

    .hero-info-box {
        margin-top: -100px;
    }

    .hero-info-item.box-3 {
        padding: 20px;
    }

    .hero-info-header .icon-box {
        width: 50px;
        height: 50px;
    }

    .hero-info-header .icon-box img {
        max-width: 24px;
    }

    .hero-info-counter-box h2 {
        font-size: 40px;
    }

    .hero-info-bg-icon img {
        max-width: 80px;
    }

    .about-us {
        padding: 50px 0;
    }

    .about-body-item {
        gap: 15px;
    }

    .about-body-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .about-body-item .icon-box img {
        max-width: 24px;
    }

    .about-body-item-content {
        width: calc(100% - 65px);
    }

    .about-us-footer {
        margin-top: 30px;
    }

    .about-footer-content-list ul li {
        margin-bottom: 10px;
    }

    .our-services {
        background-size: 250px auto;
        padding: 50px 0;
    }

    .service-item {
        gap: 15px;
    }

    .service-benefit-box {
        margin-top: 10px;
    }

    .service-benefit-list ul {
        gap: 15px;
    }

    .service-benefit-list ul li {
        padding: 6px 14px 6px 30px;
    }

    .service-benefit-list ul li::before {
        left: 14px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .section-footer-text ul li {
        font-size: 18px;
    }

    .service-benefit-box .section-footer-text {
        margin-top: 20px;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        height: 50px;
        width: 50px;
    }

    .what-we-do-item .icon-box img {
        max-width: 24px;
    }

    .what-we-do-btn {
        margin-top: 30px;
    }

    .what-we-do .section-footer-text {
        margin-top: 40px;
    }

    .our-story {
        padding: 50px 0;
    }

    .watch-video-circle a img {
        max-width: 120px;
    }

    .our-features {
        padding: 50px 0;
    }

    .our-features .section-title h2 .feature-title-img-1 {
        width: 30px;
        height: 30px;
    }

    .our-features .section-title h2 .feature-title-img-1 img {
        max-width: 14px;
    }

    .our-features .section-title h2 .feature-title-img-2 img {
        max-width: 30px;
    }

    .our-features .section-title h2 .feature-title-img-3 img {
        max-width: 30px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-item-list ul li {
        margin-bottom: 10px;
    }

    .feature-item-btn {
        margin-top: 30px;
    }

    .feature-item-image figure {
        margin: 0 -20px -20px -100px;
    }

    .feature-item-content h2 {
        font-size: 42px;
    }

    .our-pricing {
        padding: 50px 0;
    }

    .pricing-item,
    .pricing-item-header {
        padding: 15px;
    }

    .pricing-item-header .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 20px;
    }

    .pricing-item-header .icon-box img {
        max-width: 24px;
    }

    .pricing-item-content p {
        margin-bottom: 10px;
    }

    .pricing-item-content h2 {
        font-size: 36px;
    }

    .pricing-item-content h2 sub {
        font-size: 18px;
    }

    .pricing-item-body {
        padding: 30px 5px 5px;
    }

    .pricing-item-list ul li {
        margin-bottom: 10px;
    }

    .pricing-item.highlighted-box .pricing-item-header::before {
        top: 15px;
        right: 15px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .pricing-benefit-list {
        margin-top: 10px;
    }

    .pricing-benefit-list ul {
        gap: 15px 30px;
    }

    .our-projects {
        padding: 50px 0;
    }

    .project-nav {
        margin-bottom: 40px;
    }

    .project-nav ul {
        gap: 10px 32px;
    }

    .project-nav ul li a:before {
        right: -20px;
    }

    .project-item-content {
        bottom: 30px;
        right: 30px;
        left: 30px;
    }

    .project-item-btn {
        top: 30px;
        right: 30px;
    }

    .project-item-btn a {
        width: 50px;
        height: 50px;
    }

    .project-item-btn a img {
        max-width: 20px;
    }

    .cta-box {
        padding: 50px 0;
    }

    .cta-box-content {
        margin-right: 0;
    }

    .cta-box-items-list {
        padding-top: 30px;
    }

    .cta-box-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .cta-box-item .icon-box img {
        max-width: 24px;
    }

    .cta-box-item-content {
        width: calc(100% - 70px);
    }

    .cta-box-btn {
        margin-top: 40px;
    }

    .cta-box-image {
        margin-top: -50px;
    }

    .cta-box-image figure img {
        max-width: 100px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .faq-accordion {
        padding: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        padding: 15px 44px 15px 20px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 20px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 15px 20px;
    }

    .our-testimonials {
        padding: 50px 0;
    }

    .our-testimonial-content {
        margin-bottom: 30px;
    }

    .testimonial-item {
        padding: 30px;
    }

    .testimonial-company-logo img {
        width: 100%;
        max-width: 150px;
    }

    .testimonial-item-content p {
        font-size: 16px;
    }

    .testimonial-slider .testimonial-pagination {
        margin-top: 30px;
    }

    .our-blog {
        padding: 50px 0 20px;
    }

    .post-item-tags {
        top: 20px;
        left: 20px;
    }

    .post-item-body {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .post-content-box {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-content span {
        font-size: 22px;
    }

    .footer-box {
        padding: 50px 0 0;
    }

    .footer-location-info,
    .footer-contact-links {
        max-width: 100%;
        width: calc(50% - 15px);
    }

    .footer-newsletter-form {
        max-width: 100%;
        width: 100%;
    }

    .footer-social-links ul li a {
        padding: 8px 12px;
    }

    .footer-social-links ul li a i {
        font-size: 18px;
    }

    .footer-copyright {
        padding: 30px 0;
        margin-top: 30px;
    }

    .footer-menu ul {
        gap: 10px 25px;
    }

    .page-header {
        padding: 170px 0 80px;
    }

    .page-header-box h1 {
        font-size: 40px;
    }

    .our-approach {
        padding: 50px 0;
    }

    .approach-item {
        padding: 20px;
    }

    .approach-item .icon-box {
        top: -10px;
        right: -10px;
    }

    .approach-item .icon-box img {
        max-width: 70px;
    }

    .approach-item-image {
        margin-bottom: 30px;
    }

    .approach-item-content p {
        margin-top: 10px;
    }

    .approach-item-content ul {
        margin-top: 20px;
    }

    .approach-item-content ul li {
        margin-bottom: 10px;
    }

    .approach-item-list {
        padding-top: 30px;
        margin-top: 30px;
    }

    .our-values {
        padding: 50px 0;
    }

    .lets-together-circle img {
        max-width: 120px;
    }

    .value-counter-box {
        padding: 20px;
    }

    .value-counter-box .icon-box {
        width: 50px;
        height: 50px;
    }

    .value-counter-box .icon-box img {
        max-width: 24px;
    }

    .value-counter-box-content {
        width: calc(100% - 65px);
    }

    .value-counter-box-content h2 {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .our-team {
        padding: 50px 0;
    }

    .page-services {
        padding: 50px 0 20px;
    }

    .page-service-single {
        padding: 50px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin-bottom: 30px;
    }

    .page-category-list {
        margin-bottom: 30px;
    }

    .page-category-list h3,
    .sidebar-cta-title {
        padding: 15px 20px;
    }

    .sidebar-cta-body-image {
        margin-top: 20px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-process-item {
        gap: 15px;
    }

    .service-process-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .service-process-item .icon-box img {
        max-width: 24px;
    }

    .service-process-item-content {
        width: calc(100% - 65px);
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-projects {
        padding: 50px 0 20px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-entry h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-process-item {
        gap: 15px;
    }

    .project-process-item-no {
        width: 50px;
        height: 50px;
    }

    .project-process-item-no h4 {
        font-size: 24px;
    }

    .project-process-item-content {
        width: calc(100% - 65px);
    }

    .project-issue-box-title {
        margin-bottom: 20px;
    }

    .project-issue-item {
        margin-bottom: 15px;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-sidebar-body ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .team-sidebar-footer {
        padding: 15px 20px;
    }

    .page-pricing {
        padding: 50px 0;
    }

    .page-testimonials {
        padding: 50px 0 20px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-single-faqs {
        margin-bottom: 40px;
    }

    .page-contact-us {
        padding: 50px 0;
    }

    .contact-info-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .contact-info-item .icon-box img {
        max-width: 24px;
    }

    .contact-info-item-content {
        width: calc(100% - 70px);
    }

    .contact-form .form-control {
        padding: 15px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 300px;
    }

    .error-page {
        padding: 50px 0px;
    }

    .error-page-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {

    .section-row {
        margin-bottom: 30px;
    }

    .section-title h1 {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .hero-content-body {
        gap: 0;
    }

    .video-play-button h3 {
        font-size: 16px;
    }

    .hero .year-experience-circle {
        display: none;
    }

    .hero-info-list {
        gap: 20px;
    }

    .hero-info-item {
        width: 100%;
    }

    .hero-info-item-content h3 {
        font-size: 18px;
    }

    .hero-info-header {
        margin-bottom: 30px;
    }

    .hero-info-counter-box h3 {
        font-size: 18px;
    }

    .hero-info-counter-box h2 {
        font-size: 20px;
    }

    .hero-info-bg-icon {
        bottom: -10px;
        right: -10px;
    }

    .hero-info-bg-icon img {
        max-width: 60px;
    }

    .about-us-image-box-1 .about-us-image img {
        aspect-ratio: 1 / 1.47;
    }

    .about-us-image-box-2 .about-us-image {
        margin-top: 40px;
        margin-left: -110px;
    }

    .about-us-body {
        gap: 20px;
        padding: 20px 15px;
        border-width: 5px;
    }

    .about-body-item {
        width: 100%;
    }

    .about-body-item-content h3 {
        font-size: 18px;
    }

    .about-body-item-content p {
        margin: 5px 0 0;
    }

    .about-us-footer-content {
        width: 100%;
    }

    .about-us-video-box {
        width: 100%;
    }

    .about-video-image img {
        aspect-ratio: 1 / 0.6;
    }

    .service-item-title h2,
    .service-item-title .h2,
    .service-item-title h3:not(.h2),
    .service-item-title .h3 {
        font-size: 18px;
    }

    .service-benefit-list ul li {
        padding: 4px 10px 4px 26px;
    }

    .service-benefit-list ul li::before {
        left: 10px;
    }

    .section-footer-text ul li {
        font-size: 16px;
    }

    .what-we-do-item-list {
        gap: 20px;
    }

    .what-we-do-item {
        width: 100%;
    }

    .our-story {
        padding: 50px 0;
    }

    .watch-video-circle {
        margin-top: 50px;
    }

    .watch-video-circle a img {
        max-width: 100px;
    }

    .feature-item-content h3 {
        font-size: 18px;
    }

    .feature-item-content h2 {
        font-size: 30px;
    }

    .feature-item-info-content p {
        margin-bottom: 5px;
    }

    .feature-item-info-content h3 {
        font-size: 20px;
    }

    .feature-item-btn {
        margin-top: 20px;
    }

    .feature-item-image figure {
        margin: 50px -20px -20px -50px;
    }

    .feature-item-image img {
        max-width: 200px;
    }

    .feature-item-tag-list ul li {
        padding: 3px 10px;
    }

    .pricing-item-content p,
    .pricing-item-list h3 {
        font-size: 18px;
    }

    .pricing-item-content h2 {
        font-size: 20px;
    }

    .pricing-item-content h2 sub {
        font-size: 16px;
    }

    .pricing-benefit-list ul {
        gap: 10px;
    }

    .pricing-benefit-list ul li {
        font-size: 14px;
    }

    .pricing-benefit-list ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .project-nav {
        margin-bottom: 30px;
    }

    .project-nav ul {
        gap: 10px 20px;
    }

    .project-nav ul li a {
        font-size: 14px;
    }

    .project-nav ul li a:before {
        width: 6px;
        height: 6px;
        right: -14px;
        top: 7px;
    }

    .project-item-content {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .project-item-btn {
        top: 20px;
        right: 20px;
    }

    .cta-box-items-list {
        gap: 20px;
    }

    .cta-box-item {
        width: 100%;
    }

    .cta-box-btn {
        margin-top: 30px;
    }

    .cta-box-image {
        display: none;
    }

    .faq-accordion {
        padding: 10px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 14px;
        padding: 12px 36px 12px 12px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 18px;
        right: 10px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 12px;
    }

    .testimonial-item {
        min-height: 300px;
        padding: 20px;
    }

    .testimonial-author-content h3 {
        font-size: 18px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .scrolling-ticker-box {
        --gap: 15px;
    }

    .scrolling-content span {
        font-size: 20px;
    }

    .scrolling-content span img {
        max-width: 24px;
        margin-right: 15px;
    }

    .footer-working-hours h3,
    .footer-links h3,
    .footer-links p {
        margin-bottom: 15px;
    }

    .footer-working-hours ul li {
        margin-bottom: 10px;
    }

    .footer-location-info,
    .footer-contact-links {
        width: 100%;
    }

    .footer-contact-links ul li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .footer-social-links ul {
        gap: 15px;
    }

    .footer-social-links ul li a {
        font-size: 14px;
        gap: 6px;
        padding: 8px 10px;
    }

    .footer-social-links ul li a i {
        font-size: 16px;
    }

    .footer-copyright {
        justify-content: center;
        padding: 15px 0;
    }

    .footer-menu ul {
        gap: 10px 15px;
    }

    .page-header-box h1 {
        font-size: 20px;
    }

    .approach-item-list ul li {
        padding: 10px 12px;
    }

    .values-image-box {
        padding: 20px 20px 0 0;
    }

    .values-image img {
        aspect-ratio: 1 / 1.15;
    }

    .lets-together-circle a img {
        max-width: 90px;
    }

    .value-counter-box {
        padding: 15px;
    }

    .value-counter-box-content h2 {
        font-size: 20px;
    }

    .value-counter-box-content p {
        font-size: 14px;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .skills-progress-bar .skill-data .skill-title,
    .skills-progress-bar .skill-data .skill-no {
        font-size: 18px;
    }

    .values-content-footer {
        gap: 20px;
        padding-top: 30px;
        margin-top: 30px;
    }

    .values-item-author {
        gap: 10px;
    }

    .values-author-content h3 {
        font-size: 18px;
    }

    .sidebar-cta-body-content ul li {
        font-size: 16px;
    }

    .sidebar-cta-body-content ul li img {
        max-width: 20px;
    }

    .sidebar-cta-body-image img {
        max-width: 200px;
    }

    .page-single-image img {
        aspect-ratio: 1 / 0.65;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-entry ul {
        gap: 10px;
    }

    .service-entry ul li {
        width: 100%;
    }

    .service-why-choose-item {
        width: 100%;
    }

    .service-offer-item {
        width: 100%;
    }

    .service-process-image-content {
        gap: 20px;
    }

    .service-process-box {
        padding: 20px 15px;
    }

    .service-process-item .icon-box {
        width: 45px;
        height: 45px;
    }

    .service-process-item .icon-box img {
        max-width: 22px;
    }

    .service-process-item-content {
        width: calc(100% - 60px);
    }

    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .project-entry h2 {
        font-size: 20px;
    }

    .project-entry h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .project-feature-item {
        width: 100%;
    }

    .project-process-item {
        padding: 15px;
    }

    .project-issue-box-item {
        width: 100%;
    }

    .project-issue-box-item::before {
        display: none;
    }

    .project-issue-item h4 {
        margin-bottom: 5px;
    }

    .team-experience-item {
        width: 100%;
    }

    .team-experience-item-content h3 {
        font-size: 18px;
    }

    .team-values-info-list ul li {
        gap: 5px;
    }

    .team-values-info-list ul li span {
        width: 100%;
    }

    .contact-info-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-us-form {
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 250px;
    }
}

/************************************/
/***   34. Home - Version 2 css	  ***/
/************************************/

header.main-header.header-gold .header-sticky {
    background: transparent;
    backdrop-filter: initial;
    -webkit-backdrop-filter: initial;
    border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header.header-gold .header-sticky.active {
    background: var(--primary-color);
}

.hero-gold {
    background: var(--primary-color) url('../images/hero-gold-bg-shape.png') no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 205px 0 100px;
}

.hero-content-gold {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-sub-heading-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-sub-heading-gold .satisfy-client-image {
    border-color: var(--white-color);
}

.hero-sub-heading-gold .satisfy-client-image figure img {
    max-width: 28px;
}

.hero-sub-heading-content-gold p {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

.hero-content-gold .section-title h1 {
    font-size: 56px;
}

.hero-content-gold .section-title p {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-body-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.hero-image-box-gold {
    position: relative;
    margin-top: 100px;
}

.hero-image-gold figure {
    display: block;
    border-radius: 10px;
}

.hero-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 0.4764;
    object-fit: cover;
    border-radius: 10px;
}

.hero-client-box-gold {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 410px;
    background: var(--primary-color);
    border-radius: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 30px;
    z-index: 2;
}

.hero-client-box-gold::before,
.hero-client-box-gold::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    mask: url('../images/hero-client-box-corner-shape-gold.svg');
    -webkit-mask: url('../images/hero-client-box-corner-shape-gold.svg');
    background-color: var(--primary-color);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.hero-client-box-gold::before {
    top: -20px;
    right: 0;
}

.hero-client-box-gold::after {
    bottom: 0;
    left: -20px;
}

.hero-client-box-content-gold {
    max-width: 210px;
}

.hero-client-box-content-gold p {
    color: var(--white-color);
    margin: 0;
}

.hero-video-box-gold {
    position: absolute;
    bottom: 0;
    left: 60px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    border-radius: 10px 10px 0 0;
    text-align: center;
    width: 100%;
    max-width: 420px;
    padding: 15px;
    z-index: 2;
}

.hero-video-image-gold {
    position: relative;
}

.hero-video-image-gold figure,
.hero-video-image-gold figure a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    cursor: none;
}

.hero-video-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.hero-video-box-gold:hover .hero-video-image-gold figure img {
    transform: scale(1.06);
}

.hero-video-image-gold .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video-image-gold .video-play-button a {
    background: var(--accent-color);
    width: 50px;
    height: 50px;
}

.hero-video-image-gold .video-play-button a i {
    font-size: 20px;
    color: var(--primary-color);
}

.hero-video-image-gold .video-play-button a::after,
.hero-video-image-gold .video-play-button a::before {
    display: none;
}

.hero-video-content-gold {
    padding: 30px 20px 20px;
}

.hero-video-content-gold h3 {
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 500;
    color: var(--white-color);
}

.about-us-gold {
    padding: 50px 0;
}

.about-us-images-gold {
    display: flex;
    align-items: end;
    margin-right: 15px;
}

.about-us-image-gold {
    width: 100%;
}

.about-us-image-gold figure {
    display: block;
    border-radius: 10px;
}

.about-us-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-image-title-gold h2 {
    font-size: 64px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    cursor: none;
    color: var(--divider-color);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px currentColor;
}

.about-us-hightlighted-content {
    position: relative;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 20px 30px;
    overflow: hidden;
}

.about-us-hightlighted-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--accent-color);
    width: 4px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.about-us-hightlighted-content:hover:before {
    width: 100%;
}

.about-us-hightlighted-content h3 {
    position: relative;
    font-size: 20px;
    line-height: 1.4em;
    z-index: 1;
}

.about-body-items-list-gold {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-us-body-item-gold {
    width: calc(33.33% - 20px);
}

.about-us-body-item-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.about-us-body-item-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg) scale(0);
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.about-us-body-item-gold:hover .icon-box::before {
    transform: rotate(0deg) scale(1);
    border-radius: 0;
}

.about-us-body-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.about-us-body-item-gold:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-body-item-content-gold h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.about-us-footer-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 50px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.about-us-counter-box-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.about-us-counter-box-gold h2 {
    font-size: 48px;
}

.about-us-counter-box-gold p {
    max-width: 110px;
    margin: 0;
}

.our-services-gold {
    background: var(--secondary-color) url('../images/services-bg-shape-gold.png') no-repeat;
    background-position: top -18% right -18%;
    background-size: auto;
    padding: 50px 0;
}

.service-item-gold {
    position: relative;
    background: var(--white-color);
    border-radius: 10px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.service-item-gold:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.service-item-gold:hover::before,
.service-item-gold.active::before {
    top: auto;
    height: 100%;
}

.service-item-header-gold {
    position: relative;
    z-index: 1;
}

.service-item-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    overflow: hidden;
}

.service-item-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .icon-box::before,
.service-item-gold:hover .icon-box::before {
    top: auto;
    height: 100%;
}

.service-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.service-item-gold.active .icon-box img,
.service-item-gold:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.service-item-content-gold p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-content-gold p,
.service-item-gold:hover .service-item-content-gold p {
    color: var(--primary-color);
}

.service-item-body-gold {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    z-index: 1;
}

.service-item-title-gold {
    width: calc(100% - 50px);
}

.service-item-title-gold h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.service-item-title-gold h2 a {
    color: inherit;
}

.service-item-btn-gold a {
    display: inline-block;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold a,
.service-item-gold:hover .service-item-btn-gold a {
    border-color: var(--primary-color);
}

.service-item-btn-gold a img {
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold a img,
.service-item-gold:hover .service-item-btn-gold a img {
    filter: brightness(0) invert(0);
}

.service-item-btn-gold a:hover img {
    transform: rotate(0deg);
}

.what-we-do-gold {
    padding: 50px 0;
}

.what-we-item-gold {
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 30px;
}

.what-we-item-gold.box-1 {
    padding: 10px;
}

.what-we-item-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px;
}

.what-we-item-gold.box-1 .what-we-item-title-gold {
    width: calc(100% - 55px);
}

.what-we-item-title-gold h3 {
    font-size: 20px;
}

.what-we-item-header-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.what-we-item-header-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg) scale(0);
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box::before {
    transform: rotate(0deg) scale(1);
    border-radius: 0;
}

.what-we-item-gold .what-we-item-header-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 20px;
    transition: 0.4s ease-in-out;
    z-index: 1;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-item-image-gold figure {
    display: block;
    border-radius: 10px;
}

.what-we-item-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    border-radius: 10px;
}

.what-we-item-gold.box-2 .what-we-item-header-gold {
    align-items: start;
    margin-bottom: 50px;
    padding: 0;
}

.what-we-item-shape-image-gold figure {
    display: block;
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100px;
    height: 70px;
    mask-image: url('../images/what-we-item-bg-shape-image-1-gold.svg');
    background-image: url('../images/what-we-item-bg-shape-image-1-gold.svg');
}

.what-we-item-shape-image-gold img {
    width: 100%;
    object-fit: cover;
}

.what-we-item-btn-gold a {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.what-we-item-btn-gold:hover a {
    background: var(--accent-color);
}

.what-we-item-btn-gold a img {
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.what-we-item-btn-gold:hover a img {
    filter: brightness(0) invert(0);
    transform: rotate(0deg);
}

.what-we-counter-box-gold {
    position: relative;
    margin-bottom: 30px;
}

.what-we-counter-item-gold {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white-color);
    border-radius: 10px;
    text-align: center;
    padding: 25px;
}

.what-we-counter-item-gold h2 {
    font-size: 40px;
    line-height: 1em;
}

.what-we-counter-item-gold p {
    margin: 5px 0 0 0;
}

.what-we-item-gold.box-4 .what-we-item-title-gold,
.what-we-item-gold.box-4 .what-we-item-shape-image-gold {
    margin-bottom: 20px;
}

.what-we-item-gold.box-4 .what-we-item-shape-image-gold figure {
    width: 100px;
    height: 50px;
    mask-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
    background-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
}

.what-we-item-body-gold {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.learn-more-circle-gold a {
    display: inline-block;
    border-radius: 50%;
}

.learn-more-circle-gold a img {
    width: 100%;
    max-width: 95px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.learn-more-circle-gold a:hover img {
    animation-play-state: paused;
}

.what-we-item-body-image-gold {
    margin: 0 -30px -30px 0;
}

.what-we-item-body-image-gold img {
    width: 100%;
    max-width: 165px;
}

.what-we-contect-list-gold {
    text-align: center;
    margin-top: 30px;
}

.what-we-contect-list-gold h3 {
    font-size: 20px;
}

.what-we-contect-list-gold ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.what-we-contect-list-gold ul li {
    display: inline-block;
}

.what-we-contect-list-gold ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.what-we-contect-list-gold ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.what-we-contect-list-gold ul li a:hover {
    color: var(--accent-color);
}

.why-choose-us-gold {
    padding: 50px 0;
}

.why-choose-us-boxes-gold {
    margin-right: 15px;
}

.why-choose-item-gold {
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.why-choose-item-image-gold {
    width: 50%;
}

.why-choose-item-image-gold figure {
    display: block;
    border-radius: 10px;
}

.why-choose-item-image-gold figure img {
    width: 100%;
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
    border-radius: 10px;
}

.why-choose-item-body-gold {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 20px 20px 40px;
}

.why-choose-item-btn-gold a {
    border: 1px solid var(--white-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.why-choose-item-btn-gold:hover a {
    background: var(--white-color);
}

.why-choose-item-btn-gold a img {
    width: 100%;
    max-width: 24px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.why-choose-item-btn-gold:hover a img {
    filter: brightness(1) invert(1);
    transform: rotate(0deg);
}

.why-choose-item-content-gold h3 {
    font-size: 20px;
    color: var(--white-color);
}

.why-choose-item-content-gold p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.why-choose-counter-list-gold {
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 40px;
    margin-top: 30px;
}

.why-choose-counter-item-gold {
    position: relative;
    width: calc(33.33% - 40px);
    text-align: center;
}

.why-choose-counter-item-gold::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.why-choose-counter-item-gold:last-child:before,
.why-choose-counter-item-gold:nth-child(3n + 3):before {
    display: none;
}

.why-choose-counter-item-gold h2 {
    font-size: 40px;
    line-height: 1em;
    color: var(--white-color);
}

.why-choose-counter-item-gold p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.why-choose-body-gold {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.why-choose-body-item-gold {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    padding: 10px;
}

.why-choose-body-item-gold .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 10px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-choose-body-item-gold .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: rotate(180deg) scale(0);
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.why-choose-body-item-gold:hover .icon-box::before {
    transform: rotate(0deg) scale(1);
    border-radius: 0;
}

.why-choose-body-item-gold .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
}

.why-choose-body-item-content-gold {
    width: calc(100% - 100px);
}

.why-choose-body-item-content-gold h2 {
    font-size: 20px;
    color: var(--white-color);
}

.why-choose-body-item-content-gold p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.why-choose-us-btn-gold {
    margin-top: 50px;
}

.our-features-gold {
    background: linear-gradient(180deg, var(--secondary-color)50%, var(--white-color)50%);
    padding: 50px 0;
}

.feature-item-gold {
    background: var(--white-color);
    box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px 40px 0 40px;
}

.feature-item-content-gold h3 {
    font-size: 20px;
}

.feature-item-content-gold p {
    margin: 10px 0 0 0;
}

.feature-item-image-gold {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
}

.feature-item-image-gold figure {
    display: block;
    border-radius: 10px 10px 0 0;
}

.feature-item-image-gold img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.cta-box-gold {
    background: var(--secondary-color) url(../images/cta-box-bg-gold.png) no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    padding: 100px 0 50px;
}

.cta-box-image-gold {
    margin-right: 15px;
}

.cta-box-image-gold figure {
    display: block;
    border-radius: 10px;
}

.cta-box-image-gold img {
    width: 100%;
    aspect-ratio: 1 / 0.754;
    object-fit: cover;
    border-radius: 10px;
}

.cta-box-list-gold ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}

.cta-box-list-gold ul li {
    position: relative;
    color: var(--primary-color);
    line-height: 1.4em;
    padding-left: 16px;
}

.cta-box-list-gold ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.cta-box-btn-gold {
    margin-top: 40px;
}

.our-projects {
    padding: 100px 0 70px;
}

.project-item-gold {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.project-item-image-box-gold {
    position: relative;
}

.project-item-image-gold {
    border-radius: 10px;
    overflow: hidden;
}

.project-item-image-gold figure {
    display: block;
    cursor: none;
}

.project-item-image-gold img {
    width: 100%;
    aspect-ratio: 1 / 0.7;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.project-item-gold:hover .project-item-image-gold img {
    transform: scale(1.08);
}

.project-item-tag-gold {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.project-item-tag-gold a {
    position: relative;
    display: inline-block;
    background: var(--white-color);
    border-radius: 100px;
    padding: 10px 15px 10px 30px;
    font-family: var(--accent-font);
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.project-item-tag-gold a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.project-item-body-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 20px 0 20px;
}

.project-item-content-gold {
    max-width: 500px;
}

.project-item-content-gold h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.project-item-content-gold h2 a {
    color: inherit;
}

.project-readmore-btn-gold a {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.project-readmore-btn-gold:hover a {
    background: var(--accent-color);
}

.project-readmore-btn-gold a img {
    width: 100%;
    max-width: 20px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
}

.project-readmore-btn-gold:hover a img {
    filter: brightness(0) invert(0);
    transform: rotate(0deg);
}

.intro-video-gold {
    position: relative;
    background: url('../images/intro-video-bg-gold.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0 0;
    overflow: hidden;
}

.intro-video-gold::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 60%;
    z-index: 1;
}

.intro-video-gold .container {
    position: relative;
    z-index: 2;
}

.intro-video-box-gold {
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.intro-video-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.intro-video-header-gold .section-title {
    max-width: 750px;
    margin: 0;
}

.intro-video-button-gold {
    text-align: right;
}

.intro-video-button-gold a {
    display: inline-block;
    border-radius: 50%;
    cursor: none;
}

.intro-video-button-gold a img {
    width: 100%;
    max-width: 180px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

.intro-video-button-gold a:hover img {
    animation-play-state: paused;
}

.intro-video-counter-box-gold {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 100px;
    border: 1px solid var(--dark-divider-color);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 0 20px;
}

.intro-video-counter-item-gold {
    position: relative;
    width: calc(20% - 80px);
    text-align: center;
    padding: 40px 0;
}

.intro-video-counter-item-gold::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -50px;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.intro-video-counter-item-gold:last-child:before,
.intro-video-counter-item-gold:nth-child(5n + 5):before {
    display: none;
}

.intro-video-counter-item-gold h2 {
    font-size: 40px;
    color: var(--white-color);
}

.intro-video-counter-item-gold p {
    color: var(--white-color);
    margin: 5px 0 0 0;
}

.our-pricing-gold {
    padding: 50px 0;
}

.pricing-item-gold {
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
}

.pricing-item-header-gold {
    padding: 25px 25px 30px 25px;
}

.pricing-item-content-gold h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.pricing-item-content-gold h2 {
    font-size: 40px;
    color: var(--accent-color);
}

.pricing-item-content-gold h2 sub {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text-color);
    bottom: 0;
}

.pricing-item-content-gold p {
    margin: 20px 0 0 0;
}

.pricing-item-btn-gold {
    margin-top: 30px;
}

.pricing-item-list-gold {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 40px;
}

.pricing-item-list-gold h3 {
    font-size: 20px;
}

.pricing-item-list-gold ul {
    list-style: none;
    border-top: 1px solid var(--divider-color);
    padding: 20px 0 0 0;
    margin: 20px 0 0 0;
}

.pricing-item-list-gold ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-item-list-gold ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list-gold ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.pricing-benefit-list-gold {
    margin-top: 30px;
}

.pricing-benefit-list-gold ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
}

.pricing-benefit-list-gold ul li {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list-gold ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.our-testimonials-gold {
    background: var(--secondary-color) url('../images/testimonials-bg-shape-gold.png') no-repeat;
    background-position: bottom left;
    background-size: auto;
    padding: 50px 0;
}

.our-testimonials-content-gold {
    position: sticky;
    top: 40px;
}

.testimonial-item-box-gold {
    background: var(--white-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

.testimonial-item-gold {
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 10px;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
}

.testimonials-rating-gold {
    margin-bottom: 20px;
}

.testimonials-rating-gold i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonial-content-gold p {
    margin: 0;
}

.testimonial-item-body-gold {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.testimonial-author-gold {
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
}

.author-image-gold {
    margin-right: 20px;
}

.author-image-gold figure {
    display: block;
    border-radius: 50%;
}

.author-image-gold img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.author-content-gold {
    width: calc(100% - 70px);
}

.author-content-gold h3 {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.author-content-gold p {
    text-transform: capitalize;
    margin: 0;
}

.testimonial-quote-gold img {
    width: 100%;
    max-width: 40px;
}

.main-footer-gold {
    background-image: url('../images/footer-bg-shape-gold.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto;
    padding: 100px 0 0;
}

.footer-header-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 80px;
    margin-bottom: 40px;
}

.footer-header-gold .section-title {
    max-width: 730px;
    margin-bottom: 0;
}

.footer-contact-list-gold {
    text-align: right;
}

.footer-contact-list-gold h3 {
    font-size: 30px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.footer-contact-list-gold h3:last-child {
    margin-bottom: 0;
}

.footer-contact-list-gold h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-list-gold h3 a:hover {
    color: var(--accent-color);
}

.about-footer-gold {
    margin-right: 5.208vw;
}

.footer-logo-gold img {
    width: 100%;
    max-width: 192px;
}

.about-footer-content-gold {
    margin-top: 30px;
}

.about-footer-content-gold p {
    color: var(--white-color);
    margin: 0;
}

.footer-links-box-gold {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-links-gold {
    max-width: 35%;
}

.footer-links-gold h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-gold p {
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer-links-gold ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-gold ul li {
    position: relative;
    text-transform: capitalize;
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 16px;
    margin-bottom: 15px;
}

.footer-links-gold ul li:last-child {
    margin-bottom: 0;
}

.footer-links-gold ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: var(--accent-color);
    width: 6px;
    height: 6px;
}

.footer-links-gold ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links-gold ul li a:hover {
    color: var(--accent-color);
}

.footer-newsletter-form-gold p {
    margin-bottom: 20px;
}

.footer-newsletter-form-gold .form-group {
    display: flex;
    flex-wrap: wrap;
}

.footer-newsletter-form-gold .form-group .form-control {
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    color: var(--white-color);
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 14px 24px;
}

.footer-newsletter-form-gold .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover {
    background: var(--accent-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn i {
    font-size: 22px;
    color: var(--accent-color);
    margin-right: 2px;
    transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover i {
    color: var(--primary-color);
}

.footer-copyright-gold {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 60px 0;
}

.footer-copyright-text-gold p {
    color: var(--white-color);
    margin: 0;
}

.footer-social-links-gold ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-links-gold ul li a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links-gold ul li a:hover {
    background: var(--accent-color);
}

.footer-social-links-gold ul li a i {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.footer-social-links-gold ul li a:hover i {
    color: var(--primary-color);
}

@media only screen and (max-width: 1440px) {

    .hero-client-box-gold {
        width: 390px;
        padding: 30px 20px;
    }

    .hero-video-box-gold {
        left: 40px;
    }

    .about-body-items-list-gold {
        gap: 20px;
    }

    .about-us-body-item-gold {
        width: calc(33.33% - 13.33px);
    }

    .service-item-gold {
        min-height: 400px;
        padding: 30px 25px;
    }

    .what-we-counter-item-gold {
        padding: 20px;
    }

    .why-choose-item-body-gold {
        padding-left: 30px;
    }

    .why-choose-counter-list-gold {
        padding: 30px;
    }

    .feature-item-gold {
        min-height: 470px;
        padding: 30px 30px 0 30px;
    }

    .intro-video-box-gold {
        min-height: 600px;
    }

    .intro-video-counter-item-gold {
        padding: 30px 0;
    }

    .pricing-item-header-gold {
        padding: 25px 20px 30px 20px;
    }

    .pricing-item-list-gold {
        padding: 30px 25px;
    }

    .testimonial-item-gold {
        padding: 30px;
    }

    .about-footer-gold {
        margin-right: 30px;
    }
}

@media only screen and (max-width: 1024px) {

    .about-us-images-gold {
        max-width: 700px;
        margin: 0 auto 30px;
    }

    .what-we-item-image-gold figure img {
        aspect-ratio: 1 / 0.9;
    }

    .what-we-item-body-image-gold img {
        max-width: 130px;
    }

    .why-choose-us-content-gold {
        margin-bottom: 30px;
    }

    .why-choose-us-btn-gold {
        margin-top: 30px;
    }

    .why-choose-us-boxes-gold {
        margin: 0;
    }

    .project-item-content-gold {
        width: calc(100% - 60px);
        max-width: 100%;
    }

    .intro-video-button-gold a img {
        max-width: 140px;
    }

    .intro-video-counter-box-gold {
        gap: 0 30px;
    }

    .intro-video-counter-item-gold {
        width: calc(20% - 24px);
        padding: 20px 0;
    }

    .intro-video-counter-item-gold::before {
        right: -15px;
    }

    .our-testimonials-content-gold {
        position: initial;
        margin-bottom: 40px;
    }

    .footer-header-gold .section-title {
        max-width: 600px;
    }

    .footer-contact-list-gold h3 {
        font-size: 26px;
    }

    .about-footer-gold {
        margin: 0 0 40px 0;
    }

    .about-footer-content-gold {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 991px) {

    .hero-gold {
        padding: 140px 0 50px;
    }

    .hero-content-gold .section-title h1 {
        font-size: 40px;
    }

    .hero-content-body-gold {
        margin-top: 0;
    }

    .hero-image-box-gold {
        margin-top: 50px;
    }

    .hero-image-gold figure img {
        aspect-ratio: 1 / 0.7;
    }

    .hero-client-box-gold {
        width: 330px;
        padding: 20px 15px;
    }

    .satisfy-client-image figure img {
        max-width: 40px;
    }

    .hero-client-box-content-gold {
        max-width: 180px;
    }

    .hero-client-box-content-gold p {
        font-size: 14px;
    }

    .hero-video-box-gold {
        left: 15px;
        max-width: 280px;
        padding: 10px;
    }

    .hero-video-content-gold {
        padding: 20px 10px 10px;
    }

    .hero-video-content-gold h3 {
        font-size: 18px;
    }

    .about-us-gold {
        padding: 50px 0;
    }

    .about-us-hightlighted-content {
        margin-bottom: 30px;
    }

    .about-us-footer-gold {
        margin-top: 30px;
        padding-top: 30px;
    }

    .about-us-counter-box-gold h2 {
        font-size: 45px;
    }

    .our-services-gold {
        padding: 50px 0;
        background-size: 350px auto;
    }

    .what-we-do-gold {
        padding: 50px 0;
    }

    .what-we-counter-item-gold h2 {
        font-size: 40px;
    }

    .what-we-contect-list-gold {
        margin-top: 10px;
    }

    .what-we-contect-list-gold ul {
        margin-top: 15px;
    }

    .why-choose-us-gold {
        padding: 50px 0;
    }

    .why-choose-body-item-gold {
        gap: 15px;
    }

    .why-choose-body-item-gold .icon-box {
        width: 50px;
        height: 50px;
    }

    .why-choose-body-item-gold .icon-box img {
        max-width: 24px;
    }

    .why-choose-body-item-content-gold {
        width: calc(100% - 65px);
    }

    .why-choose-item-gold {
        padding: 10px;
    }

    .why-choose-counter-item-gold h2 {
        font-size: 40px;
    }

    .our-features-gold {
        padding: 50px 0;
    }

    .cta-box-gold {
        padding: 50px 0;
    }

    .cta-box-image-gold {
        margin: 0 0 30px 0;
    }

    .cta-box-btn-gold {
        margin-top: 30px;
    }

    .our-projects {
        padding: 50px 0 20px;
    }

    .project-item-tag-gold {
        top: 20px;
        left: 20px;
    }

    .project-item-tag-gold a {
        padding: 8px 10px 8px 24px;
    }

    .project-item-tag-gold a::before {
        left: 10px;
    }

    .project-item-body-gold {
        padding: 15px 5px 0 5px;
    }

    .project-item-content-gold h2 {
        font-size: 18px;
    }

    .intro-video-gold {
        padding: 50px 0 0;
    }

    .intro-video-box-gold {
        min-height: 500px;
    }

    .intro-video-button-gold {
        width: 100%;
        text-align: center;
    }

    .intro-video-counter-box-gold {
        padding: 0 15px;
    }

    .intro-video-counter-item-gold h2 {
        font-size: 40px;
    }

    .our-pricing-gold {
        padding: 50px 0;
    }

    .pricing-item-gold {
        padding: 10px;
    }

    .pricing-item-header-gold {
        padding: 10px 10px 20px 10px;
    }

    .pricing-item-content-gold h3 {
        margin-bottom: 15px;
    }

    .pricing-item-content-gold h2 {
        font-size: 40px;
    }

    .pricing-item-content-gold p {
        margin-top: 10px;
    }

    .pricing-item-btn-gold {
        margin-top: 20px;
    }

    .pricing-item-list-gold {
        padding: 20px;
    }

    .pricing-item-list-gold ul li {
        margin-bottom: 10px;
    }

    .pricing-item-list-gold ul li::before {
        font-size: 16px;
    }

    .pricing-benefit-list-gold {
        margin-top: 10px;
    }

    .pricing-benefit-list-gold ul {
        gap: 15px 30px;
    }

    .our-testimonials-gold {
        background-size: 400px auto;
        padding: 50px 0;
    }

    .our-testimonials-content-gold {
        margin-bottom: 30px;
    }

    .testimonial-item-gold {
        min-height: 300px;
        gap: 20px;
    }

    .testimonial-item-body-gold {
        padding-top: 20px;
    }

    .main-footer-gold {
        padding: 50px 0 0 0;
    }

    .footer-header-gold {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-header-gold .section-title {
        max-width: 100%;
    }

    .footer-contact-list-gold {
        text-align: left;
    }

    .footer-links-gold {
        max-width: 40%;
    }

    .footer-links-gold h3 {
        margin-bottom: 15px;
    }

    .footer-links-gold ul li {
        margin-bottom: 10px;
    }

    .footer-newsletter-form-gold p {
        margin-bottom: 15px;
    }

    .footer-copyright-gold {
        margin-top: 40px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {

    .hero-content-gold .section-title h1 {
        font-size: 30px;
    }

    .hero-content-body-gold {
        gap: 20px;
    }

    .hero-client-box-gold {
        position: initial;
        width: 100%;
        border-radius: 10px;
        margin-top: 20px;
    }

    .hero-video-box-gold {
        position: initial;
    }

    .hero-client-box-gold::before,
    .hero-client-box-gold::after {
        display: none;
    }

    .hero-video-box-gold {
        max-width: 100%;
        margin: 20px 0 -50px;
    }

    .about-us-image-title-gold h2 {
        font-size: 44px;
    }

    .about-us-hightlighted-content {
        padding: 20px 15px;
    }

    .about-us-hightlighted-content h3 {
        font-size: 18px;
    }

    .about-us-body-item-gold {
        width: calc(50% - 10px);
    }

    .about-us-body-item-gold .icon-box {
        margin-bottom: 10px;
    }

    .about-us-body-item-content-gold h3 {
        font-size: 18px;
    }

    .about-us-footer-gold {
        gap: 20px;
    }

    .about-us-counter-box-gold {
        gap: 10px;
    }

    .about-us-counter-box-gold h2 {
        font-size: 30px;
    }

    .about-us-counter-box-gold p {
        font-size: 14px;
    }

    .service-item-gold {
        min-height: 350px;
        gap: 20px;
        padding: 20px;
    }

    .service-item-gold .icon-box {
        margin-bottom: 15px;
    }

    .service-item-body-gold {
        padding-top: 20px;
    }

    .service-item-title-gold h2 {
        font-size: 18px;
    }

    .what-we-item-gold {
        padding: 20px;
    }

    .what-we-item-header-gold {
        padding: 15px 15px 20px 15px;
    }

    .what-we-item-title-gold h3 {
        font-size: 18px;
    }

    .what-we-counter-item-gold h2 {
        font-size: 30px;
    }

    .what-we-item-body-image-gold {
        margin: 0 -20px -20px 0;
    }

    .what-we-item-body-image-gold img {
        max-width: 100px;
    }

    .what-we-contect-list-gold ul {
        gap: 15px;
    }

    .what-we-contect-list-gold ul li {
        font-size: 14px;
    }

    .what-we-contect-list-gold ul li img {
        max-width: 18px;
        margin-right: 5px;
    }

    .why-choose-body-item-content-gold h2 {
        font-size: 18px;
    }

    .why-choose-item-image-gold {
        width: 100%;
    }

    .why-choose-item-body-gold {
        width: 100%;
        padding: 20px 15px 10px;
        flex-direction: column-reverse;
    }

    .why-choose-counter-list-gold {
        padding: 20px;
        gap: 20px;
    }

    .why-choose-counter-item-gold {
        width: calc(33.33% - 13.33px);
    }

    .why-choose-counter-item-gold::before {
        right: -10px;
    }

    .why-choose-counter-item-gold h2 {
        font-size: 30px;
    }

    .why-choose-counter-item-gold p {
        font-size: 14px;
    }

    .feature-item-gold {
        min-height: initial;
        padding: 20px 20px 0 20px;
    }

    .feature-item-image-gold {
        max-width: 240px;
    }

    .intro-video-button-gold a img {
        max-width: 100px;
    }

    .intro-video-counter-item-gold {
        width: calc(50% - 15px);
    }

    .intro-video-counter-item-gold:last-child:before,
    .intro-video-counter-item-gold:nth-child(5n + 5):before {
        display: block;
    }

    .intro-video-counter-item-gold:nth-child(2n + 2):before {
        display: none;
    }

    .intro-video-counter-item-gold h2 {
        font-size: 30px;
    }

    .pricing-item-content-gold h2 {
        font-size: 30px;
    }

    .pricing-item-list-gold {
        padding: 20px 15px;
    }

    .pricing-benefit-list-gold ul {
        gap: 10px;
    }

    .pricing-benefit-list-gold ul li {
        font-size: 14px;
    }

    .pricing-benefit-list-gold ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .testimonial-item-box-gold {
        padding: 10px;
    }

    .testimonial-item-gold {
        padding: 20px;
    }

    .testimonials-rating-gold {
        margin-bottom: 15px;
    }

    .author-image-gold {
        margin-right: 10px;
    }

    .author-content-gold {
        width: calc(100% - 60px);
    }

    .author-content-gold h3 {
        font-size: 18px;
    }

    .footer-header-gold {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-contact-list-gold h3 {
        font-size: 22px;
    }

    .about-footer-gold {
        margin-bottom: 30px;
    }

    .footer-links-gold {
        max-width: 100%;
    }

    .footer-copyright-gold {
        margin-top: 30px;
        padding: 15px 0;
        flex-direction: column-reverse;
    }
}

/************************************/
/***   35. Home - Version 3 css	  ***/
/************************************/

.main-header.header-silver {
    top: 30px;
}

.main-header.header-silver .header-sticky {
    border-radius: 10px;
    max-width: 1500px;
    margin: 0 auto;
}

header.main-header.header-silver .header-sticky.active {
    border-radius: 0 0 10px 10px;
}

.main-header.header-silver .navbar {
    padding: 25px 10px;
}

.hero-silver {
    background-image: url('../images/hero-bg-image-silver.png');
    background-position: center center;
    background-position: center center;
    background-size: cover;
    padding: 230px 0 195px;
    overflow: hidden;
}

.hero-content-silver {
    height: 100%;
    align-content: center;
}

.hero-content-body-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.hero-body-item-silver {
    width: calc(50% - 15px);
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px) saturate(100%);
    -webkit-backdrop-filter: blur(30px) saturate(100%);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
}

.hero-body-item-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 15px;
}

.hero-body-item-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.hero-body-item-silver:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.hero-body-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.hero-body-item-content-silver {
    width: calc(100% - 75px);
}

.hero-body-item-content-silver h3 {
    color: var(--white-color);
    font-size: 20px;
    line-height: 1.4em;
}

.hero-content-footer-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px 50px;
}

.hero-image-silver {
    height: 100%;
    align-content: end;
}

.hero-image-silver figure {
    display: block;
    border-radius: 10px 10px 0 0;
}

.hero-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 1.073;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: -195px;
}

.about-us-silver {
    padding: 50px 0;
}

.about-us-image-box-silver {
    position: relative;
    height: 100%;
    margin-right: 15px;
}

.about-image-box-1-silver {
    height: 100%;
    padding-top: 40px;
}

.about-image-box-1-silver figure {
    height: 100%;
    display: block;
    border-radius: 10px;
}

.about-image-box-1-silver img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.955;
    object-fit: cover;
    border-radius: 10px;
}

.about-image-box-2-silver {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-image-box-2-silver figure {
    display: block;
    border-radius: 10px 10px 0 10px;
}

.about-image-box-2-silver img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
    border-radius: 10px 10px 0 10px;
}

.about-counter-box-silver {
    position: absolute;
    width: 100%;
    max-width: 360px;
    bottom: 30px;
    left: 30px;
    background: var(--divider-color);
    backdrop-filter: blur(15px) saturate(100%);
    -webkit-backdrop-filter: blur(15px) saturate(100%);
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    border-radius: 10px;
    padding: 30px;
    z-index: 1;
}

.about-counter-silver h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white-color);
}

.about-counter-silver p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.about-counter-box-silver .satisfy-client-image {
    border-color: var(--white-color);
}

.about-counter-box-silver .satisfy-client-image img {
    max-width: 40px;
}

.about-us-content-silver {
    height: 100%;
    align-content: center;
}

.about-us-item-list-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.about-us-item-silver {
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.about-us-item-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-us-item-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-item-silver:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.about-us-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-us-item-silver:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-item-content-silver {
    width: calc(100% - 75px);
}

.about-us-item-content-silver h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.about-us-body-silver .skills-progress-bar {
    margin-bottom: 40px;
}

.about-us-content-list-silver ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-us-content-list-silver ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-content-list-silver ul li:last-child {
    margin-bottom: 0;
}

.about-us-content-list-silver ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.about-us-footer-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.about-author-Box-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.about-author-image-silver figure {
    display: block;
    border-radius: 50px;
}

.about-author-image-silver img {
    width: 100%;
    max-width: 50px;
    border-radius: 50px;
}

.about-author-content-silver h3 {
    font-size: 20px;
}

.about-author-content-silver p {
    margin: 5px 0 0;
}

.our-services-silver {
    background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 50px 0;
}

.service-item-silver {
    background: var(--bg-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.service-item-header-silver {
    padding: 30px 30px 0;
}

.service-item-header-silver .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-item-header-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item-silver:hover .service-item-header-silver .icon-box::before {
    transform: rotate(0) scale(1);
}

.service-item-header-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-item-silver:hover .service-item-header-silver .icon-box img {
    filter: brightness(0) invert(1);
}

.service-item-content-silver h3 {
    font-size: 20px;
}

.service-item-content-silver p {
    margin: 10px 0 0;
}

.service-item-image-silver a {
    display: block;
    cursor: none;
}

.service-item-image-silver figure {
    display: block;
    mask-image: url('../images/service-image-shap-silver.svg');
    background-image: url('../images/service-image-shap-silver.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    max-width: 355px;
    max-height: 175px;
    margin: 0 auto;
}

.service-item-image-silver figure img {
    width: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.service-item-silver:hover .service-item-image-silver figure img {
    transform: scale(1.06);
}

.what-we-do-silver {
    padding: 50px 0;
}

.what-we-do-box-silver {
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-right: 15px;
    padding: 30px;
    overflow: hidden;
}

.what-we-box-header-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}

.what-we-header-counter-silver {
    border-right: 1px solid var(--divider-color);
    padding-right: 20px;
    margin-right: 20px;
}

.what-we-header-counter-silver h2 {
    font-size: 42px;
    font-weight: 700;
}

.what-we-header-counter-silver p {
    margin: 5px 0 0 0;
}

.what-we-counter-info-silver {
    width: 50%;
}

.what-we-counter-info-silver p {
    margin-bottom: 0;
}

.what-we-body-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.what-we-body-image-silver {
    width: calc(65% - 15px);
}

.what-we-body-image-silver figure {
    display: block;
    margin: 0 0 -30px -30px;
}

.what-we-body-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 1.54;
    object-fit: cover;
}

.what-we-counter-box-silver {
    width: calc(35% - 15px);
}

.what-we-counter-box-title-silver h3 {
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 40px;
}

.what-we-counter-item-silver {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.what-we-counter-item-silver:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.what-we-counter-item-silver h2 {
    font-size: 42px;
    font-weight: 700;
}

.what-we-counter-item-silver p {
    margin: 10px 0 0;
}

.what-we-content-body-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.what-we-content-image-silver {
    width: calc(44% - 15px);
    border-radius: 10px;
}

.what-we-content-image-silver figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.what-we-content-image-silver img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.465;
    object-fit: cover;
    border-radius: 10px;
}

.what-we-items-btn-silver {
    width: calc(56% - 15px);
}

.what-we-item-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.what-we-item-silver:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.what-we-item-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.what-we-item-silver .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-item-silver:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.what-we-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.what-we-item-silver:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-we-item-content-silver {
    width: calc(100% - 80px);
}

.what-we-item-content-silver h3 {
    font-size: 20px;
}

.what-we-item-content-silver p {
    margin: 10px 0 0 0;
}

.what-we-do-btn-silver {
    margin-top: 60px;
}

.our-award-silver {
    background-image: none;
    padding: 50px 0;
}

.award-title-box-silver {
    margin-right: 15px;
}

.award-counter-box-silver {
    background: url('../images/award-counter-bg-silver.png') no-repeat;
    background-position: center center;
    background-size: cover;
    max-width: 600px;
    text-align: center;
    padding: 70px;
    margin: 0 auto;
}

.award-counter-box-silver h2 {
    font-size: 100px;
    color: var(--white-color);
}

.award-counter-box-silver h3 {
    font-size: 20px;
    max-width: 330px;
    line-height: 1.4em;
    color: var(--white-color);
    margin: 10px auto 0;
}

.award-item-silver {
    background-color: var(--dark-divider-color);
    border-radius: 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 40px;
}

.award-item-silver:last-child {
    margin-bottom: 0;
}

.award-item-silver .icon-box {
    position: relative;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.award-item-silver .icon-box::before {
    content: '';
    position: absolute;
    background: var(--white-color);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.award-item-silver:hover .icon-box::before {
    transform: scale(1);
}

.award-item-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 74px;
    z-index: 1;
}

.award-item-content-silver {
    width: calc(100% - 120px);
}

.award-item-content-silver h3 {
    font-size: 20px;
    color: var(--white-color);
}

.award-item-content-silver ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px 20px;
    margin: 25px 0 0 0;
    padding: 0;
}

.award-item-content-silver ul li {
    font-size: 14px;
    color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 30px;
    padding: 8px 20px;
}

.our-pricing-silver {
    padding: 50px 0;
}

.pricing-item-silver {
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 15px;
}

.pricing-item-header-silver {
    padding: 15px 15px 30px;
}

.pricing-item-header-silver .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    overflow: hidden;
}

.pricing-item-header-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.pricing-item-silver:hover .pricing-item-header-silver .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.pricing-item-header-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.pricing-item-silver:hover .pricing-item-header-silver .icon-box img {
    filter: brightness(1) invert(1);
}

.pricing-item-content-silver h3 {
    font-size: 20px;
}

.pricing-item-content-silver p {
    margin: 10px 0 0;
}

.pricing-item-body-silver {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 40px;
}

.pricing-item-list-silver h2 {
    font-size: 40px;
    font-weight: 700;
}

.pricing-item-list-silver h2 sub {
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    bottom: 0;
}

.pricing-item-list-silver ul {
    border-top: 1px solid var(--divider-color);
    list-style: none;
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.pricing-item-list-silver ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-item-list-silver ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list-silver ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.pricing-item-btn-silver {
    margin-top: 30px;
}

.pricing-item-btn-silver .pricing-item-btn-silver .pricing-benefit-list-silver {
    margin-top: 30px;
}

.pricing-benefit-list-silver ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
}

.pricing-benefit-list-silver ul li {
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list-silver ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.our-working-process-silver {
    position: relative;
    background-image: url('../images/working-process-bg-silver.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    overflow: hidden;
}

.our-working-process-silver::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.our-working-process-silver .container {
    position: relative;
    z-index: 1;
}

.working-process-item-list-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 30px;
}

.working-process-item-silver {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: calc(25% - 22.5px);
    gap: 80px;
}

.working-process-item-silver:nth-child(even) {
    flex-direction: column-reverse;
    margin: 0 0 170px;
}

.working-process-no-silver {
    position: relative;
}

.working-process-no-silver::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    right: 0;
    width: calc(100% + 30px);
    height: 1px;
    background-color: var(--dark-divider-color);
}

.working-process-item-silver:nth-child(even) .working-process-no-silver::before {
    bottom: auto;
    top: -38px;
}

.working-process-item-silver:nth-child(4n + 4) .working-process-no-silver::before,
.working-process-item-silver:last-child .working-process-no-silver::before {
    width: 100%;
}

.working-process-no-silver h2 {
    color: var(--white-color);
    font-size: 42px;
    line-height: 1em;
    text-align: center;
}

.working-process-body-silver {
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(20px) saturate(100%);
    -webkit-backdrop-filter: blur(20px) saturate(100%);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    margin-top: 30px;
}

.working-process-body-silver .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: -60px auto 20px;
}

.working-process-body-silver .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.working-process-body-silver:hover .icon-box::before {
    border-radius: 0;
    transform: rotate(0) scale(1);
}

.working-process-body-silver .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.working-process-item-content-silver {
    text-align: center;
}

.working-process-item-content-silver h3 {
    color: var(--white-color);
    font-size: 20px;
}

.working-process-item-content-silver p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.our-team-silver {
    padding: 100px 0 70px;
}

.team-item-silver {
    position: relative;
    border-radius: 10px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-item-image-silver a {
    display: block;
    cursor: none;
}

.team-item-image-silver figure {
    display: block;
    border-radius: 10px;
}

.team-item-image-silver img {
    width: 100%;
    aspect-ratio: 1 / 1.20;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
    border-radius: 10px;
}

.team-item-silver:hover .team-item-image-silver img {
    transform: scale(1.06);
}

.team-item-body-silver {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.team-item-content-silver h3 {
    font-size: 20px;
    color: var(--white-color);
}

.team-item-content-silver h3 a {
    color: inherit;
}

.team-item-content-silver p {
    color: var(--white-color);
    margin: 10px 0 0 0;
}

.team-social-list-box-silver {
    position: relative;
}

.team-social-btn-silver a {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.team-social-btn-silver a:hover {
    background-color: var(--white-color);
}

.team-social-btn-silver a i {
    font-size: 24px;
    color: var(--primary-color);
}

.team-social-list-silver {
    position: absolute;
    right: 25px;
    bottom: 100%;
    transform: translate(50%, -30px);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.team-item-silver:hover .team-social-list-silver {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, -55px);
}

.team-social-list-silver ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-social-list-silver ul li a {
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.team-social-list-silver ul li a i {
    font-size: 18px;
    color: inherit;
}

.team-social-list-silver ul li a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.our-testimonials-silver {
    background: var(--secondary-color);
    padding: 50px 0;
}

.testimonial-image-box-silver {
    position: relative;
    height: 100%;
}

.testimonial-image-silver {
    height: 100%;
}

.testimonial-image-silver figure {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.testimonial-image-silver figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1.098;
    object-fit: cover;
    border-radius: 10px;
}

.testimonial-content-box-silver {
    height: 100%;
    align-content: center;
    margin-left: 15px;
}

.testimonial-slider-silver {
    margin-top: 60px;
}

.testimonial-slider-silver .swiper-wrapper {
    cursor: none;
}

.testimonial-item-rating {
    margin-bottom: 20px;
}

.testimonial-item-rating i {
    color: var(--accent-color);
    font-size: 20px;
}

.testimonial-item-content-silver p {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.testimonial-item-author-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.testimonial-author-image-silver figure {
    display: block;
    border-radius: 50%;
}

.testimonial-author-image-silver figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.testimonial-author-content-silver {
    width: calc(100% - 65px);
    text-align: left;
}

.testimonial-author-content-silver h3 {
    font-size: 20px;
}

.testimonial-author-content-silver p {
    margin: 5px 0 0;
}

.testimonial-btn-silver {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: right;
    z-index: 2;
}

.testimonial-slider-silver .testimonial-button-next-silver,
.testimonial-slider-silver .testimonial-button-prev-silver {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver {
    margin-left: 15px;
}

.testimonial-slider-silver .testimonial-button-next-silver:hover,
.testimonial-slider-silver .testimonial-button-prev-silver:hover {
    background: var(--accent-color);
}

.testimonial-slider-silver .testimonial-button-next-silver::before,
.testimonial-slider-silver .testimonial-button-prev-silver::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver::before {
    transform: rotate(360deg);
}

.testimonial-footer-content-silver {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.section-footer-text.section-footer-contact {
    width: calc(72% - 15px);
    justify-content: left;
}

.section-footer-text.section-footer-contact span {
    margin-right: 5px;
}

.testimonial-footer-content-silver .section-footer-text {
    margin-top: 0;
}

.testimonial-review-box-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    width: calc(28% - 15px);
}

.testimonial-review-box-silver .icon-box img {
    width: 100%;
    max-width: 35px;
}

.testimonial-review-box-content-silver h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-review-box-content-silver span {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.testimonial-review-box-content-silver span i {
    font-size: 12px;
    color: var(--accent-color);
}

.testimonial-review-box-content-silver p {
    font-size: 14px;
    margin: 5px 0 0 0;
}

.main-footer-silver {
    background-image: none;
    padding: 100px 0 0;
}

.footer-header-silver {
    text-align: center;
    border-bottom: 1px solid var(--dark-divider-color);
    margin: 0 auto 60px;
    padding-bottom: 60px;
}

.footer-header-silver .section-title {
    max-width: 990px;
    margin: 0 auto;
}

.footer-header-silver .footer-header-btn-silver {
    margin-top: 40px;
}

.footer-logo-silver img {
    width: 100%;
    max-width: 192px;
}

.about-footer-content-silver {
    max-width: 500px;
    margin-top: 40px;
}

.about-footer-content-silver p {
    color: var(--white-color);
    margin: 0;
}

.about-footer-silver .footer-menu-silver {
    margin-top: 40px;
}

.footer-menu-silver ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu-silver ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--white-color);
}

.footer-menu-silver ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-menu-silver ul li a:hover {
    color: var(--accent-color);
}

.footer-menu-silver.footer-privacy-policy-silver ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    background: var(--accent-color);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
}

.footer-menu-silver.footer-privacy-policy-silver ul li:last-child::before {
    display: none;
}

.footer-newsletter-box-silver {
    max-width: 500px;
    margin: 0 0 0 auto;
}

.footer-newsletter-form-silver h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-newsletter-form-silver .form-group {
    width: 100%;
    display: flex;
    background: transparent;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 4px;
}

.footer-newsletter-form-silver .form-group .form-control {
    width: calc(100% - 40px);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 14px;
}

.footer-newsletter-form-silver .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 2px;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn img {
    max-width: 16px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover img {
    transform: rotate(45deg);
}

.footer-social-links-silver {
    margin-top: 40px;
}

.footer-social-links-silver ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-links-silver ul li a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links-silver ul li a:hover {
    background: var(--accent-color);
}

.footer-social-links-silver ul li a i {
    font-size: 18px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.footer-social-links-silver ul li a:hover i {
    color: var(--primary-color);
}

.footer-copyright-silver {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 60px;
    padding: 40px 0;
}

.footer-copyright-box-silver {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 30px;
}

.footer-copyright-text-silver p {
    color: var(--white-color);
    margin: 0;
}

@media only screen and (max-width: 1540px) {

    .main-header.header-silver .header-sticky {
        width: calc(100% - 30px);
    }
}

@media only screen and (max-width: 1440px) {

    .about-us-item-list-silver {
        gap: 20px;
    }

    .about-us-item-silver {
        width: calc(50% - 10px);
        padding: 10px;
    }

    .service-item-header-silver {
        padding: 30px 15px 0;
    }

    .service-item-image-silver figure {
        max-height: 145px;
    }

    .what-we-box-header-silver {
        margin-bottom: 30px;
    }

    .what-we-body-image-silver {
        width: calc(62% - 15px);
    }

    .what-we-counter-box-silver {
        width: calc(38% - 15px);
    }

    .what-we-counter-box-title-silver h3 {
        margin-bottom: 30px;
    }

    .what-we-do-btn-silver {
        margin-top: 40px;
    }

    .pricing-item-body-silver {
        padding: 30px 25px;
    }

    .working-process-body-silver {
        padding: 30px 20px;
    }

    .testimonial-review-box-silver {
        gap: 10px;
    }

    .testimonial-review-box-silver .icon-box img {
        max-width: 30px;
    }

    .testimonial-review-box-content-silver span {
        gap: 0px;
    }
}

@media only screen and (max-width: 1024px) {

    .hero-content-silver {
        height: auto;
        margin-bottom: 30px;
    }

    .hero-image-silver {
        height: auto;
        max-width: 70%;
        margin: 0 auto;
    }

    .about-us-image-box-silver {
        height: auto;
        margin: 0 0 30px;
    }

    .about-image-box-1-silver,
    .about-us-content-silver {
        height: auto;
    }

    .about-image-box-1-silver img {
        aspect-ratio: 1 / 0.8;
    }

    .about-us-footer-silver {
        margin-top: 40px;
    }

    .service-item-image-silver figure {
        max-height: 175px;
    }

    .what-we-do-box-silver {
        margin: 0;
    }

    .what-we-body-image-silver img {
        max-width: 300px;
    }

    .what-we-do-content-silver {
        margin-bottom: 30px;
    }

    .what-we-content-image-silver img {
        aspect-ratio: 1 / 1.065;
    }

    .award-title-box-silver {
        margin: 0 0 30px 0;
    }

    .working-process-item-silver {
        width: calc(50% - 15px);
        gap: 50px;
    }

    .working-process-item-silver:nth-child(odd) {
        margin: 0;
    }

    .working-process-no-silver::before {
        width: calc(100% + 20px);
    }

    .working-process-item-silver:nth-child(even) {
        flex-direction: column;
        margin: 0px;
    }

    .working-process-no-silver::before {
        width: 100%;
        bottom: -25px;
    }

    .working-process-item-silver:nth-child(even) .working-process-no-silver::before {
        top: auto;
        bottom: -25px;
    }

    .team-item-image-silver img {
        aspect-ratio: 1 / 1.19;
    }

    .team-item-body-silver {
        padding: 20px;
    }

    .testimonial-image-box-silver {
        height: auto;
        margin-bottom: 30px;
    }

    .testimonial-image-silver figure img {
        aspect-ratio: 1 / 0.8;
    }

    .testimonial-content-box-silver {
        margin-left: 0;
    }

    .testimonial-slider-silver {
        margin: 0;
    }

    .testimonial-item-author-silver {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 991px) {

    .main-header.header-silver {
        top: 0px;
    }

    .main-header.header-silver .header-sticky {
        width: 100%;
        border-radius: 0;
    }

    header.main-header.header-silver .header-sticky.active {
        border-radius: 0;
    }

    .main-header.header-silver .navbar {
        padding: 20px 0;
    }

    .hero-silver {
        padding: 140px 0 0;
    }

    .hero-content-body-silver {
        margin-bottom: 40px;
    }

    .hero-body-item-silver .icon-box {
        height: 50px;
        width: 50px;
    }

    .hero-body-item-silver .icon-box img {
        max-width: 24px;
    }

    .hero-body-item-content-silver {
        width: calc(100% - 65px);
    }

    .hero-image-silver img {
        margin-bottom: 0;
    }

    .about-us-silver {
        padding: 50px 0;
    }

    .about-counter-box-silver {
        gap: 20px;
        padding: 20px;
    }

    .about-counter-silver h2 {
        font-size: 40px;
    }

    .about-us-item-list-silver {
        margin-bottom: 30px;
    }

    .about-us-item-silver .icon-box {
        height: 50px;
        width: 50px;
    }

    .about-us-item-silver .icon-box img {
        max-width: 24px;
    }

    .about-us-item-content-silver {
        width: calc(100% - 65px);
    }

    .about-us-body-silver .skills-progress-bar {
        margin-bottom: 30px;
    }

    .about-us-footer-silver {
        margin-top: 30px;
    }

    .our-services-silver {
        padding: 50px 0;
        background-size: 250px auto;
    }

    .what-we-do-silver {
        padding: 50px 0;
    }

    .what-we-header-counter-silver h2 {
        font-size: 42px;
    }

    .what-we-counter-item-silver h2 {
        font-size: 42px;
    }

    .what-we-counter-item-silver p {
        margin: 5px 0 0;
    }

    .what-we-content-body-silver {
        margin-top: 0;
    }

    .what-we-item-silver {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .what-we-item-silver .icon-box {
        height: 50px;
        width: 50px;
    }

    .what-we-item-silver .icon-box img {
        max-width: 24px;
    }

    .what-we-item-content-silver {
        width: calc(100% - 70px);
    }

    .our-award-silver {
        padding: 50px 0;
    }

    .award-counter-box-silver {
        padding: 50px;
    }

    .award-counter-box-silver h2 {
        font-size: 56px;
    }

    .award-item-silver {
        margin-bottom: 30px;
        padding: 15px;
    }

    .award-item-silver .icon-box {
        height: 80px;
        width: 80px;
    }

    .award-item-silver .icon-box img {
        max-width: 64px;
    }

    .award-item-content-silver {
        width: calc(100% - 100px);
    }

    .our-pricing-silver {
        padding: 50px 0;
    }

    .pricing-item-header-silver .icon-box {
        height: 50px;
        width: 50px;
        margin-bottom: 30px;
    }

    .pricing-item-header-silver .icon-box img {
        max-width: 24px;
    }

    .pricing-item-body-silver {
        padding: 20px 15px;
    }

    .pricing-item-list-silver ul li:before {
        font-size: 16px;
    }

    .pricing-item-list-silver h2 {
        font-size: 36px;
    }

    .pricing-item-list-silver sub {
        font-size: 18px;
    }

    .pricing-item-btn-silver {
        margin-top: 20px;
    }

    .pricing-item-btn-silver .pricing-benefit-list-silver {
        margin-top: 10px;
    }

    .pricing-benefit-list-silver ul {
        gap: 15px 30px;
    }

    .our-working-process-silver {
        padding: 50px 0;
    }

    .working-process-body-silver {
        padding: 20px;
    }

    .working-process-body-silver .icon-box {
        width: 50px;
        height: 50px;
    }

    .working-process-body-silver .icon-box {
        margin: -45px auto 20px;
    }

    .working-process-no-silver h2 {
        font-size: 40px;
    }

    .our-team-silver {
        padding: 50px 0 20px;
    }

    .team-item-body-silver {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .team-item-content-silver p {
        margin: 5px 0 0 0;
    }

    .our-testimonials-silver {
        padding: 50px 0;
    }

    .testimonial-footer-content-silver {
        padding-top: 30px;
        margin-top: 30px;
    }

    .testimonial-review-box-silver {
        gap: 20px;
    }

    .main-footer-silver {
        padding: 50px 0 0;
    }

    .footer-header-silver {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-header-silver .footer-header-btn-silver {
        margin-top: 30px;
    }

    .about-footer-silver {
        margin-bottom: 30px;
    }

    .about-footer-content-silver {
        max-width: 100%;
        margin-top: 20px;
    }

    .about-footer-silver .footer-menu-silver {
        margin-top: 30px;
    }

    .testimonial-item-content-silver p {
        font-size: 18px;
    }

    .testimonial-item-author-silver {
        margin-top: 30px;
    }

    .footer-newsletter-box-silver {
        max-width: 100%;
        margin: 0;
    }

    .footer-social-links-silver {
        margin-top: 30px;
    }

    .footer-copyright-silver {
        margin-top: 30px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {

    .hero-content-body-silver {
        margin-bottom: 30px;
    }

    .hero-content-body-silver {
        gap: 20px;
    }

    .hero-body-item-silver {
        width: 100%;
        padding: 10px;
    }

    .hero-body-item-content-silver h3 {
        font-size: 18px;
    }

    .hero-content-footer-silver {
        gap: 30px;
    }

    .hero-image-silver {
        max-width: 100%;
    }

    .about-image-box-1-silver img {
        aspect-ratio: 1 / 1.01;
    }

    .about-image-box-2-silver {
        max-width: 70%;
    }

    .about-counter-box-silver {
        max-width: 100%;
        width: auto;
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px;
    }

    .about-counter-silver h2 {
        font-size: 20px;
    }

    .about-counter-silver p {
        margin: 5px 0 0;
    }

    .about-counter-box-silver .satisfy-client-image img {
        max-width: 34px;
        min-width: 0;
    }

    .about-us-item-silver {
        width: 100%;
    }

    .about-us-item-content-silver h3 {
        font-size: 18px;
    }

    .about-us-footer-silver {
        gap: 20px;
    }

    .about-author-content-silver h3 {
        font-size: 18px;
    }

    .what-we-do-box-silver {
        padding: 20px;
    }

    .what-we-header-counter-silver {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--divider-color);
        padding: 0 0 10px;
        margin: 0 0 10px;
        margin-right: 0;
    }

    .what-we-header-counter-silver p {
        margin: 5px 0 0 0;
    }

    .what-we-counter-info-silver {
        width: 100%;
    }

    .what-we-header-counter-silver h2 {
        font-size: 30px;
    }

    .what-we-body-silver {
        gap: 20px;
    }

    .what-we-body-image-silver {
        width: calc(52% - 10px);
    }

    .what-we-body-image-silver figure {
        margin: 0 0 -20px -20px;
    }

    .what-we-counter-box-silver {
        width: calc(48% - 10px);
    }

    .what-we-counter-box-title-silver h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .what-we-counter-item-silver {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .what-we-counter-item-silver h2 {
        font-size: 30px;
    }

    .what-we-counter-item-silver p {
        font-size: 14px;
    }

    .what-we-content-image-silver,
    .what-we-items-btn-silver {
        width: 100%;
    }

    .what-we-item-content-silver h3 {
        font-size: 18px;
    }

    .what-we-item-content-silver p {
        margin: 5px 0 0 0;
    }

    .what-we-do-btn-silver {
        margin-top: 30px;
    }

    .award-counter-box-silver {
        padding: 30px;
    }

    .award-counter-box-silver h2 {
        font-size: 40px;
    }

    .award-counter-box-silver h3 {
        font-size: 18px;
    }

    .award-item-silver {
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .award-item-content-silver ul li {
        padding: 10px;
    }

    .award-item-content-silver {
        width: 100%;
    }

    .award-item-content-silver h3 {
        font-size: 18px;
    }

    .award-item-content-silver ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }

    .pricing-item-silver {
        padding: 10px;
    }

    .pricing-item-header-silver {
        padding: 10px 10px 20px;
    }

    .pricing-item-header-silver .icon-box {
        margin-bottom: 20px;
    }

    .pricing-item-list-silver h2 {
        font-size: 20px;
    }

    .pricing-item-list-silver sub {
        font-size: 16px;
    }

    .pricing-item-list-silver ul li {
        margin-bottom: 10px;
    }

    .pricing-benefit-list-silver ul {
        gap: 10px;
    }

    .pricing-benefit-list-silver ul li {
        font-size: 14px;
    }

    .pricing-benefit-list-silver ul li img {
        max-width: 16px;
        margin-right: 5px;
    }

    .working-process-item-silver {
        width: 100%;
    }

    .team-item-body-silver {
        padding: 15px;
    }

    .team-item-content-silver h3 {
        font-size: 18px;
    }

    .team-social-btn-silver a {
        width: 40px;
        height: 40px;
    }

    .testimonial-item-content-silver p {
        font-size: 16px;
    }

    .testimonial-author-content-silver h3 {
        font-size: 18px;
    }

    .testimonial-btn-silver {
        position: initial;
        justify-content: left;
        margin-top: 30px;
    }

    .testimonial-footer-content-silver {
        gap: 20px;
    }

    .section-footer-text.section-footer-contact {
        width: 100%;
    }

    .testimonial-review-box-silver {
        width: 100%;
        justify-content: center;
    }

    .footer-menu-silver ul {
        gap: 5px 12px;
    }

    .footer-copyright-silver {
        padding: 15px 0;
    }

    .footer-copyright-box-silver {
        justify-content: center;
    }

    .footer-menu-silver.footer-privacy-policy-silver ul li::before {
        display: none;
    }
}

.btn-default.btn-light {
    background: var(--white-color) !important;
    color: var(--primary-color) !important;
}

.btn-default.btn-light::before {
    background: var(--primary-color) !important;
}

.btn-default.btn-light::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.btn-default.btn-light:hover {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
}

.btn-default.btn-light:hover::before {
    background: var(--white-color) !important;
}

.btn-default.btn-light:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D0D0D' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.section-title h2 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 30px;
    }
}

/* Unified Page Header Styles to perfectly match Hero Section (.section-title h1) */
.page-header-box h1,
.page-header-box h2 {
    font-size: 56px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

@media (max-width: 991px) {

    .page-header-box h1,
    .page-header-box h2 {
        font-size: 40px !important;
    }
}

@media (max-width: 767px) {

    .page-header-box h1,
    .page-header-box h2 {
        font-size: 30px !important;
    }
}

/* =========================================================
   NUCLEAR OVERRIDE: FORCE ALL HEADINGS TO EXACT HERO STYLE
   ========================================================= */

.hero-content h1 {
    font-family: "Montserrat", sans-serif !important;
    font-size: 56px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    line-height: 1.2 !important;
    color: var(--title-color) !important;
}

.section-title h1,
.section-title h2,
.page-header-box h1,
.page-header-box h2 {
    font-family: "Montserrat", sans-serif !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    line-height: 1.2 !important;
    color: var(--title-color) !important;
}

/* Subheadings / h3 override */
.section-title h3,
.page-header-box h3,
.hero-content h3 {
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-bottom: 15px !important;
}

/* Ensure white text is preserved where needed */
.text-white,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title h3,
.dark-section .page-header-box h1,
.dark-section .page-header-box h2 {
    color: #000000 !important;
}

/* Mobile Responsive Overrides */
@media (max-width: 991px) {

    .section-title h1,
    .section-title h2,
    .page-header-box h1,
    .page-header-box h2,
    .hero-content h1 {
        font-size: 40px !important;
    }
}

@media (max-width: 767px) {

    .section-title h1,
    .section-title h2,
    .page-header-box h1,
    .page-header-box h2,
    .hero-content h1 {
        font-size: 16px !important;
    }
}

/* Project Card Title matching Hero Heading */
.spc-title {
    font-family: "Montserrat", sans-serif !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    line-height: 1.2 !important;
    color: var(--title-color) !important;
    margin-bottom: 5px !important;
}

@media (max-width: 991px) {
    .spc-title {
        font-size: 40px !important;
    }
}

@media (max-width: 767px) {
    .spc-title {
        font-size: 30px !important;
    }
}

/* ========================================= */
/* Standardized Global Section Spacing       */
/* ========================================= */
.about-us,
.our-numbers,
.our-services,
.our-services-gold,
.our-services-silver,
.sticky-projects-section,
.our-features,
.our-story,
.industries-serve,
.construction-process,
.equipment-tech,
.trusted-clients,
.cta-section,
.our-testimonials,
.our-blog,
.our-faqs,
.why-choose-us,
.why-choose-us-gold,
.extracted-style-28 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

@media (max-width: 991px) {

    .about-us,
    .our-numbers,
    .our-services,
    .our-services-gold,
    .our-services-silver,
    .sticky-projects-section,
    .our-features,
    .our-story,
    .industries-serve,
    .construction-process,
    .equipment-tech,
    .trusted-clients,
    .cta-section,
    .our-testimonials,
    .our-blog,
    .our-faqs,
    .why-choose-us,
    .why-choose-us-gold,
    .extracted-style-28 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .extracted-style-25,
    .services-nav-buttons {
        margin-top: 20px !important;
    }
}

@media (max-width: 767px) {

    .about-us,
    .our-numbers,
    .our-services,
    .our-services-gold,
    .our-services-silver,
    .sticky-projects-section,
    .our-features,
    .our-story,
    .industries-serve,
    .construction-process,
    .equipment-tech,
    .trusted-clients,
    .cta-section,
    .our-testimonials,
    .our-blog,
    .our-faqs,
    .why-choose-us,
    .why-choose-us-gold,
    .extracted-style-28 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .extracted-style-25,
    .services-nav-buttons {
        margin-top: 10px !important;
    }

    .why-choose-us .section-title,
    .why-choose-us-gold .section-title {
        margin-bottom: 15px !important;
    }
}


/* ========================================= */
/* Custom Footer Overrides                   */
/* ========================================= */
.main-footer {
    background: #000000 !important;
    background-image: none !important;
    padding-top: 20px !important;
}

.main-footer::before,
.main-footer::after {
    display: none !important;
}

/* Reduce footer spacing globally (desktop & mobile) across all pages */
.main-footer .footer-box {
    padding-top: 25px !important;
    padding-bottom: 5px !important;
}

.main-footer .col-lg-12.mt-5.pt-4 {
    margin-top: 15px !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
}

.main-footer .footer-copyright {
    margin-top: 5px !important;
    padding: 10px 0 5px !important;
}

.main-footer .footer-links h3 {
    margin-bottom: 12px !important;
    font-size: 18px !important;
}

.main-footer .footer-box .col-lg-3,
.main-footer .footer-box .col-lg-2 {
    margin-bottom: 5px !important;
}

.main-footer .footer-social-links {
    padding-top: 15px !important;
    border-top: none !important;
    margin-top: 15px !important;
}

.main-footer .footer-contact-links ul li {
    padding-bottom: 0 !important;
    border-bottom: none !important;
    margin-bottom: 8px !important;
}

.main-footer .footer-links ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.main-footer .footer-links ul li {
    margin-bottom: 12px !important;
}

.main-footer .footer-links ul li a,
.main-footer .footer-links ul li span,
.main-footer .footer-contact-links ul li {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s ease;
}

.main-footer .footer-links ul li a:hover {
    color: var(--secondary-color) !important;
    opacity: 1;
}

.main-footer .footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 !important;
    margin-top: 15px !important;
}

.main-footer .footer-copyright-text p {
    color: #ffffff !important;
    font-size: 15px !important;
    opacity: 0.8;
    margin: 0 !important;
}

/* ========================================= */
/* Inner Hero / Breadcrumbs Color Fix        */
/* ========================================= */
.page-header-box h1,
.page-header-box ol li.breadcrumb-item,
.page-header-box ol li.breadcrumb-item a,
.page-header-box ol .breadcrumb-item+.breadcrumb-item::before,
.page-header-box * {
    color: #ffffff !important;
}

/* ========================================= */
/* Contact Page Compact Overrides            */
/* ========================================= */
.contact-us-content .section-title h2 {
    font-size: 25px !important;
    margin-bottom: 10px !important;
}

.contact-us-content .section-title p {
    font-size: 15px !important;
    margin-bottom: 25px !important;
}

.contact-info-item {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important;
}

.contact-info-item .icon-box {
    width: 40px !important;
    height: 40px !important;
    margin-right: 15px !important;
}

.contact-info-item .icon-box img {
    max-width: 18px !important;
}

.contact-info-item-content h3 {
    font-size: 15px !important;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
}

.contact-info-item-content p {
    font-size: 14px !important;
    margin: 0 !important;
}

.contact-us-form {
    padding: 30px !important;
    margin-left: 0 !important;
}

.contact-us-form .section-title h2 {
    font-size: 26px !important;
    margin-bottom: 10px !important;
}

.contact-us-form .section-title p {
    font-size: 14px !important;
    margin-bottom: 20px !important;
}

.contact-form .form-control {
    padding: 12px 15px !important;
    font-size: 14px !important;
}

.contact-form textarea.form-control {
    min-height: 120px !important;
}

@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/* Fix Hero and FAQ section button overlap */
.hero-content .section-title p,
.our-faqs-content .section-title p {
    margin-bottom: 10px !important;
}

.btn-default {
    font-family: var(--accent-font);
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.2em;
    text-transform: capitalize;
    color: var(--white-color) !important;
    background: var(--primary-color) !important;
    border-radius: 30px !important;
    padding: 15px 35px 15px 25px !important;
    border: none;
    overflow: visible !important;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1;
}

.btn-default::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-default:hover {
    transform: translateY(-2px);
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
}

.btn-default:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

/* ==============================================================
   Founder Message V2 (Grid Layout)
============================================================== */
.founder-message-v2 {
    background: #fdfdfd;
    padding: 0;
    margin: 20px 0;
    overflow: hidden;
}

.founder-grid-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border: none !important;
    border-radius: 10px;
    background: #f5f5f5;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
}

.founder-grid-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 150px;
    /* Only needs to cover the top left corner */
    background-color: var(--accent-color);
    z-index: 0;
}

/* Left Column (Dark Section with Construction Image) */
.founder-left-col-v2 {
    flex: 1 1 30%;
    background: #111 url('../assets/homepage/background.png') no-repeat bottom center;
    background-size: auto 25%;
    position: relative;
    padding: 10px 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 5px solid var(--accent-color);
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    margin-top: -20%;
    /* To pull it up and create the angled effect, will adjust below if needed */
}

/* Removing the negative margin trick and using a simpler clip-path for the angled top left */
.founder-left-col-v2 {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
    margin-top: 0;
    max-width: 340px;
    height: 470px;
    position: relative;
    z-index: 1;
}

.founder-left-text {
    position: relative;
    z-index: 2;
    padding-top: 0 !important;
    color: #fff !important;
}

.founder-left-text h3 {
    color: #fff;
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}

.founder-left-text h3 .highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Middle Column (Message) */
.founder-mid-col-v2 {
    flex: 1 1 40%;
    padding: 10px 20px !important;
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-mid-header h2 {
    font-size: 20px !important;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px !important;
}

.founder-mid-header h2 span {
    color: var(--accent-color);
}

.founder-mid-divider {
    height: 2px;
    width: 100%;
    background: var(--accent-color);
    margin-bottom: 8px !important;
    position: relative;
}

.founder-mid-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.founder-mid-content {
    position: relative;
}

.quote-icon-top,
.quote-icon-bottom {
    color: var(--accent-color);
    font-size: 16px !important;
    opacity: 0.5;
}

.quote-icon-top {
    margin-bottom: 5px !important;
}

.quote-icon-bottom {
    text-align: right;
    margin-top: 5px !important;
}

.founder-mid-content p {
    font-size: 12px !important;
    color: #444;
    line-height: 1.5 !important;
    margin-bottom: 6px !important;
}

.founder-mid-content .highlight-quote {
    font-size: 14px !important;
    color: var(--primary-color);
    font-weight: 600;
}

.founder-mid-content .highlight-quote span {
    color: var(--accent-color);
    font-weight: 700;
}

/* Right Column (Image and Nameplate) */
.founder-right-col-v2 {
    flex: 1 1 30%;
    position: relative;
    background: #fff;
}

.founder-image-v2 {
    position: relative;
    height: 100%;
    width: 100%;
}

.founder-image-v2 img {
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.founder-nameplate-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    border-top: 3px solid var(--accent-color);
    padding: 10px 25px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

.founder-nameplate-v2 .signature {
    font-family: 'Great Vibes', cursive, 'Brush Script MT', italic;
    font-size: 20px !important;
    color: var(--accent-color);
    font-weight: 400;
}

.founder-nameplate-v2 .details {
    text-align: right;
}

.founder-nameplate-v2 .details h4 {
    color: var(--accent-color);
    font-size: 12px !important;
    margin: 0;
    font-weight: 700;
}

.founder-nameplate-v2 .details p {
    color: #ccc;
    font-size: 10px !important;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 991px) {

    .founder-left-col-v2,
    .founder-mid-col-v2,
    .founder-right-col-v2 {
        flex: 1 1 100%;
    }

    .founder-left-col-v2 {
        clip-path: none;
        border-right: none;
        border-bottom: 5px solid var(--accent-color);
        padding: 40px;
    }

    .founder-nameplate-v2 {
        left: 0;
        clip-path: none;
    }
}

/* ==============================================================
   History Timeline V2
============================================================== */
.timeline-v2 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

.timeline-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px !important;
    background-color: var(--accent-color) !important;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-row-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.timeline-row-v2.icon-row {
    margin-bottom: 40px;
}

.timeline-side-left,
.timeline-side-right {
    width: 45%;
}

.timeline-center-v2 {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-dot-v2 {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50%;
    background-color: var(--accent-color) !important;
    box-shadow: none !important;
    /* Fake border to cut out spine */
    position: relative;
    z-index: 3;
}

.timeline-year-v2 {
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-year-v2 span {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: var(--primary-color) !important;
}

.timeline-year-v2 .timeline-h-line {
    height: 1px !important;
    background-color: var(--accent-color) !important;
    flex-grow: 1;
    opacity: 0.6 !important;
}

.timeline-year-v2 .timeline-h-line.right-line {
    margin-left: 20px;
}

.timeline-year-v2.year-right {
    justify-content: flex-end;
}

.timeline-year-v2.year-right .timeline-h-line.left-line {
    margin-right: 20px;
}

.timeline-content-v2 h3 {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: var(--primary-color) !important;
    margin-bottom: 15px;
}

.timeline-content-v2 p {
    font-size: 13px !important;
    color: #666 !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
    margin: 0;
}

.timeline-content-v2.right-aligned h3,
.timeline-content-v2.right-aligned p {
    text-align: right;
}

.timeline-icon-badge {
    width: 46px !important;
    height: 46px !important;
    background: var(--bg-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: var(--accent-color) !important;
    font-size: 18px !important;
    position: relative;
    z-index: 3;
    border: 1px solid var(--accent-color) !important;
    box-shadow: none !important;
}

.timeline-icon-badge::before,
.timeline-icon-badge::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 20px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    display: none !important;
}

.timeline-icon-badge::before {
    left: -12px;
    border-radius: 4px 0 0 4px;
}

.timeline-icon-badge::after {
    right: -12px;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 768px) {
    .timeline-spine {
        left: 30px;
    }

    .timeline-row-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
        margin-bottom: 50px;
    }

    .timeline-side-left,
    .timeline-side-right {
        width: 100%;
    }

    .timeline-center-v2 {
        position: absolute;
        left: 22px;
        /* 30px - 8px */
        top: 0;
        width: 16px;
        height: 100%;
        align-items: flex-start;
        padding-top: 10px;
    }

    .timeline-row-v2.icon-row .timeline-center-v2 {
        left: 0;
        /* 30 - 30 */
    }

    .timeline-year-v2 .timeline-h-line {
        display: none;
    }

    .timeline-content-v2.right-aligned h3,
    .timeline-content-v2.right-aligned p {
        text-align: left;
    }

    .timeline-side-left.text-end {
        text-align: left !important;
    }

    .timeline-year-v2,
    .timeline-content-v2 {
        margin-bottom: 15px;
    }
}

/* ==============================================================
   Snake History Timeline
============================================================== */
.our-journey-section,
.company-history-snake {
    position: relative;
    padding: 80px 0 !important;
    overflow: hidden;
    background: var(--bg-color) !important;
}

.journey-figure {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.journey-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-quote-box {
    margin-top: 10px;
    padding: 5px 10px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--primary-color, #d4af37);
    border-radius: 8px;
}

.journey-quote-box p {
    margin-bottom: 0 !important;
    font-size: 15px !important;
    font-weight: 600;
    color: var(--text-dark, #222);
    font-style: italic;
    line-height: 1.6em !important;
}

.premium-timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 15px;
}

/* The vertical center line */
.premium-timeline-container::before {
    content: '';
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background-color: var(--accent-color);
    opacity: 0.5;
    z-index: 1;
}

.premium-timeline-item {
    position: relative;
    margin-bottom: 60px;
    z-index: 2;
}

.premium-timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.timeline-col {
    width: 45%;
}

.timeline-node-col {
    width: 10%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.timeline-node {
    width: 80px;
    height: 80px;
    background-color: var(--bg-color);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.8);
}

.timeline-node span {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Premium Card */
.timeline-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    /* Clean shadow for visibility */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.timeline-card h3 {
    font-size: 25px !important;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-card p {
    font-size: 15px !important;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-card.text-right {
    text-align: right;
}

/* Premium Image */
.timeline-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    line-height: 0;
}

.timeline-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.5s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .premium-timeline-container::before {
        left: 55px;
        /* 15px container padding + 40px (half of 80px node) */
    }

    .timeline-row {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 100px;
    }

    .timeline-col {
        width: 100%;
        margin-bottom: 20px;
    }

    .timeline-node-col {
        position: absolute;
        left: 0;
        top: 0;
        width: 80px;
        height: auto;
    }

    .timeline-card.text-right,
    .timeline-card.text-left {
        text-align: left;
    }

    .premium-timeline-item {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .premium-timeline-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .premium-timeline-container::before {
        left: 35px;
        /* 10px container padding + 25px (half of 50px node) */
    }

    .timeline-row {
        padding-left: 65px;
    }

    .timeline-node-col {
        position: absolute;
        left: 0;
        top: 0;
        width: 50px;
        height: auto;
    }

    .timeline-node {
        width: 50px;
        height: 50px;
        border-width: 3px;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
    }

    .timeline-node span {
        font-size: 13px;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h3 {
        font-size: 20px !important;
        margin-bottom: 10px;
    }

    .timeline-card p {
        font-size: 14px !important;
    }
}

/* ==============================================================
   Vision Banner Section (Team Page)
============================================================== */
.vision-banner-section {
    position: relative;
    background: #fcfcfc;
    margin: 0 0 20px 0 !important;
    overflow: hidden;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.vision-banner-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    min-height: 150px !important;
}

/* Left Sketch Background */
.vision-banner-left {
    display: flex !important;
    flex: 1 1 25% !important;
    background: linear-gradient(to right, rgba(252, 252, 252, 0) 50%, rgba(252, 252, 252, 1) 100%), url('../assets/homepage/background.png') no-repeat center center !important;
    background-size: cover !important;
    opacity: 0.5 !important;
}

/* Middle Content */
.vision-banner-mid {
    flex: 1 1 50% !important;
    padding: 15px 10px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 2;
    margin-left: 0 !important;
}

.vision-banner-mid h2 {
    font-size: 18px !important;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 0 !important;
    letter-spacing: 0.5px;
}

.vision-banner-mid h2 span {
    color: var(--accent-color);
}

.vision-banner-divider {
    width: 60%;
    height: 2px;
    background: var(--accent-color);
    position: relative;
    margin: 10px auto 0px auto !important;
}

.vision-banner-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.vision-features-row {
    display: flex;
    justify-content: center;
    gap: 15px !important;
    width: 100%;
}

.vision-feature-item {
    display: flex;
    align-items: center;
    text-align: left;
    border-right: none !important;
    padding-right: 15px !important;
}

.vision-feature-item:last-child {
    border-right: none;
    padding-right: 0 !important;
}

.vision-feature-item .v-icon {
    width: 35px !important;
    height: 35px !important;
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 8px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
    font-size: 16px !important;
    margin-right: 10px !important;
    flex-shrink: 0;
}

.vision-feature-item p {
    font-size: 11px !important;
    color: #444;
    font-weight: 600;
    line-height: 1.2 !important;
    margin: 0;
}

/* Right Dark Section */
.vision-banner-right {
    flex: 1 1 25% !important;
    background: #111 !important;
    position: relative;
    padding: 10px 30px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff !important;
    clip-path: none !important;
    margin-left: 0 !important;
    border-left: 5px solid var(--accent-color) !important;
}

.vision-banner-right h3 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 10px 0 !important;
}

.v-quote-top,
.v-quote-bot {
    color: var(--accent-color);
    font-size: 20px !important;
    opacity: 0.8;
}

.v-quote-bot {
    text-align: right;
}

/* Responsive */
@media (max-width: 1200px) {
    .vision-features-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .vision-feature-item {
        width: 45%;
        border-right: none;
    }
}

@media (max-width: 991px) {
    .vision-banner-container {
        flex-direction: column;
    }

    .vision-banner-left {
        display: none;
        /* Hide sketch on mobile to save space */
    }

    .vision-banner-mid {
        margin-left: 0;
        width: 100%;
        padding: 40px 20px;
    }

    .vision-banner-mid h2 {
        font-size: 12px !important;
    }

    .vision-banner-right {
        margin-left: 0;
        clip-path: none;
        border-left: none;
        border-top: 5px solid var(--accent-color);
        padding: 15px;
        align-items: center;
        text-align: center;
    }

    .vision-features-row {
        flex-wrap: wrap !important;
        justify-content: center;
        gap: 15px 10px !important;
    }

    .vision-feature-item {
        width: calc(50% - 10px) !important;
        justify-content: flex-start !important;
        padding-left: 10px;
    }
}

/* Org Chart Wrapper Fixed Backgrounds */
.org-chart-wrapper {
    position: relative;
    background-color: #fbfbfb !important;
    overflow: hidden;
}

.org-chart-wrapper::before,
.org-chart-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    background-image: url('../assets/homepage/bg-side.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 25vw auto;
    opacity: 0.08;
    /* Much lower opacity for premium feel */
    z-index: 0;
    pointer-events: none;
}

.org-chart-wrapper::before {
    left: 0;
    background-position: -5vw center;
    /* Pushed slightly outside to the left */
}

.org-chart-wrapper::after {
    right: 0;
    background-position: calc(100% + 5vw) center;
    /* Pushed slightly outside to the right */
}

.org-chart-tree,
.leadership-pill {
    position: relative;
    z-index: 2;
}

/* Core Values Banner */
.core-values-banner {
    background-color: #ffffff !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    /* Normal space between sections */
    border-top: 1px solid rgba(211, 164, 92, 0.4) !important;
    border-bottom: 1px solid rgba(211, 164, 92, 0.4) !important;
}

.core-values-wrapper {
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    /* Force single row */
}

.core-values-title-box {
    background: linear-gradient(to right, #e2ae63, #b48532) !important;
    position: relative !important;
    padding: 25px 40px 25px 30px !important;
    /* Normal padding */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%) !important;
    flex: 0 0 auto !important;
}

.core-values-title-box h2 {
    color: #111 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding-right: 15px !important;
    line-height: 1.2 !important;
}

.core-values-items {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    justify-content: space-evenly !important;
    align-items: center !important;
    padding: 20px 15px !important;
    /* Normal padding */
    flex: 1 1 auto !important;
    overflow-x: auto !important;
}

.core-value-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    /* Normal gap */
    padding: 0 15px !important;
    /* Normal padding */
    border-right: 1px solid rgba(211, 164, 92, 0.4) !important;
    flex: 1 1 0% !important;
    min-width: 180px !important;
    /* Minimum width to prevent crushing text */
}

.core-value-item.border-0 {
    border-right: none !important;
}

.cv-icon {
    color: #d3a45c !important;
    font-size: 32px !important;
    /* Normal size icon */
    line-height: 1 !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.cv-text h4 {
    color: #000000 !important;
    font-size: 15px !important;
    /* Normal title */
    font-weight: 700 !important;
    margin: 0 0 5px 0 !important;
    text-transform: uppercase !important;
}

.cv-text p {
    color: #000000 !important;
    font-size: 13px !important;
    /* Normal description */
    line-height: 1.4 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* ========================================= */
/* Hero Section Custom typography            */
/* ========================================= */
.hero-prof {
    letter-spacing: 1px;
    font-size: 25px !important;
    font-weight: 500 !important;
    color: #000000 !important;
}

.hero-title-text {
    font-weight: 700 !important;
    font-size: 40px !important;
}

.hero-title-accent {
    color: var(--accent-color) !important;
}

.hero-sub {
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-usps {
    margin-left: -50px;
}

/* ========================================= */
/* Sector Page Styles                        */
/* ========================================= */
.sector-page-wrapper {
    background-color: #d2d2d2;
    padding: 60px 0;
}

.sector-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
}

.sector-card.reverse-layout {
    flex-direction: row-reverse;
}

.sector-content {
    flex: 1 1 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sector-image {
    flex: 1 1 45%;
    position: relative;
    min-height: 350px;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.sector-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sector-desc {
    font-size: 15px !important;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sector-table {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 15px 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.sector-table-title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

.sector-table-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ==============================================================
   RESPONSIVE MEDIA QUERIES (Global & Custom Elements)
============================================================== */

/* --- TABLET & BELOW (max-width: 991px) --- */
@media (max-width: 991px) {

    /* Global Typography & Spacing */
    .section-padding {
        padding: 50px 0 !important;
    }

    h1,
    .team-header-title {
        font-size: 32px !important;
    }

    h2,
    .overview-heading,
    .founder-mid-header h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    /* Founder Message V2 */
    .founder-grid-v2 {
        flex-direction: column;
    }

    .founder-left-col-v2 {
        max-width: 100%;
        height: auto;
        min-height: 200px;
        clip-path: none;
        border-right: none;
        border-bottom: 5px solid var(--accent-color);
        padding: 40px 20px !important;
    }

    .founder-grid-v2::before {
        display: none;
    }

    .founder-mid-col-v2 {
        text-align: center;
        padding: 30px 0 !important;
    }

    .founder-mid-divider {
        margin: 0 auto 15px auto !important;
    }

    .founder-right-col-v2 {
        height: 350px;
    }

    .founder-image-v2 img {
        object-position: top;
    }

    .founder-nameplate-v2 {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    /* Core Values Banner */
    .core-values-wrapper {
        flex-direction: column;
    }

    .core-values-title-box {
        clip-path: none !important;
        width: 100%;
        text-align: center;
        padding: 15px !important;
    }

    .core-values-items {
        flex-wrap: wrap !important;
        padding: 15px !important;
    }

    .core-value-item {
        flex: 1 1 45% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(211, 164, 92, 0.4) !important;
        padding: 15px !important;
        margin-bottom: 10px;
        justify-content: center;
    }

    .cv-text {
        text-align: center;
    }

    /* Team Header USPs */
    .team-header-section {
        padding-bottom: 30px !important;
    }

    .team-usps-horizontal {
        justify-content: center !important;
        margin-top: 30px;
        gap: 20px !important;
    }

    /* Overview Image wrapper */
    .overview-image-wrapper {
        height: 400px;
    }

    /* Hero Responsive */
    .hero::before {
        background: #000000 !important;
        opacity: 0.80 !important;
        z-index: 1 !important;
    }

    .hero .container {
        position: relative;
        z-index: 2 !important;
    }

    .hero-usps {
        margin-left: 0 !important;
        justify-content: flex-start !important;
    }

    .hero-content-body {
        justify-content: flex-start !important;
    }

    .hero-title-text {
        font-size: 32px !important;
    }

    /* Sector Cards */
    .sector-card,
    .sector-card.reverse-layout {
        flex-direction: column;
    }

    .sector-content {
        padding: 20px;
    }

    .sector-image {
        min-height: 300px;
    }

    .sector-image img {
        position: relative;
        height: 300px;
    }
}

/* --- MOBILE & BELOW (max-width: 767px) --- */
@media (max-width: 767px) {

    /* Global Typography & Spacing */
    .section-padding {
        padding: 0 !important;
    }

    h1,
    .team-header-title {
        font-size: 24px !important;
    }

    h2,
    .overview-heading,
    .founder-mid-header h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Founder Message V2 */
    .founder-right-col-v2 {
        height: 300px;
    }

    /* Hero Responsive Mobile */
    .hero {
        min-height: 580px !important;
        padding: 120px 0 60px 0 !important;
        background-position: 80% center !important;
        background-size: cover !important;
        display: flex;
        align-items: center;
    }

    .hero::before {
        background: #000000 !important;
        opacity: 0.82 !important;
        z-index: 1 !important;
    }

    .hero .container {
        position: relative;
        z-index: 2 !important;
    }

    .hero-content {
        text-align: left !important;
    }

    .hero-content h1,
    .hero-content h1 span,
    .hero-content .hero-prof,
    .hero-content .hero-title-text,
    .hero-content .hero-sub,
    .hero-content p {
        color: #ffffff !important;
    }

    .hero-content .hero-title-accent {
        color: var(--accent-color, #d3a45c) !important;
    }

    .hero-prof {
        font-size: 15px !important;
    }

    .hero-title-text {
        font-size: 25px !important;
    }

    .hero-sub {
        font-size: 0.88rem !important;
        line-height: 1.35 !important;
    }

    .hero-content-body {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    .hero-usps {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 14px 10px !important;
        margin: 15px 0 25px 0 !important;
        padding: 0 !important;
        width: 86% !important;
        max-width: 320px !important;
        order: 1 !important;
    }

    .hero-btn {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin-left: 0 !important;
        margin-bottom: 20px !important;
        order: 2 !important;
        width: 100% !important;
    }

    .hero-btn a.btn-default {
        font-size: 11px !important;
        padding: 10px 26px 10px 14px !important;
        border-radius: 25px !important;
        white-space: nowrap;
        background: #ffffff !important;
        color: #000000 !important;
    }

    .hero-btn a.btn-default::after {
        right: 10px !important;
        width: 10px !important;
        height: 10px !important;
    }

    .hero-usps .usp-item {
        border-right: 1px solid rgba(255, 255, 255, 0.25) !important;
        padding: 0 10px 0 0 !important;
        margin: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
        min-width: 0 !important;
        flex: 0 0 48% !important;
        max-width: 48% !important;
    }

    /* 2 columns for all rows */
    .hero-usps .usp-item:nth-child(1),
    .hero-usps .usp-item:nth-child(2),
    .hero-usps .usp-item:nth-child(3),
    .hero-usps .usp-item:nth-child(4),
    .hero-usps .usp-item:nth-child(5) {
        flex: 0 0 48% !important;
        max-width: 48% !important;
    }

    .hero-usps .usp-item i {
        font-size: 14px !important;
        margin-bottom: 4px !important;
        display: block !important;
        text-align: left !important;
        color: var(--accent-color, #d3a45c) !important;
    }

    .hero-usps .usp-item p {
        font-size: 9.5px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        white-space: normal !important;
        word-break: keep-all !important;
        text-align: left !important;
        color: #ffffff !important;
    }

    /* Remove right border from end of each line (2nd item of each row and last item) */
    .hero-usps .usp-item:nth-child(2),
    .hero-usps .usp-item:nth-child(4),
    .hero-usps .usp-item:last-child {
        border-right: none !important;
        padding-right: 0 !important;
    }

    /* Team Header */
    .team-header-section {
        text-align: center;
    }

    .team-header-subtitle {
        margin: 0 auto !important;
    }

    .team-usps-horizontal {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: flex-start !important;
        text-align: center;
        gap: 25px 15px !important;
        padding: 25px 15px !important;
    }

    .usp-item {
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 20px;
    }

    .team-usps-horizontal .usp-item:nth-child(1),
    .team-usps-horizontal .usp-item:nth-child(2) {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        margin-bottom: 0 !important;
    }

    .team-usps-horizontal .usp-item:nth-child(3) {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* Core Values */
    .core-value-item {
        flex: 1 1 100% !important;
    }

    /* Overview Section */
    .overview-image-wrapper {
        height: 300px;
    }

    .overview-badge {
        bottom: 15px;
        left: 15px;
        flex-direction: column;
        text-align: center;
        padding-right: 0;
    }

    .badge-icon {
        margin-bottom: 10px;
    }

    /* Sector Cards */
    .sector-table {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-bottom: 15px;
    }

    .sector-table-title {
        margin-bottom: 0;
        color: var(--accent-color);
    }

    .sector-table-desc {
        margin-bottom: 10px;
    }

    .sector-image img {
        height: 250px;
    }
}

/* ========================================= */
/* Trust Banner Styles                       */
/* ========================================= */
.trust-banner-sub {
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff !important;
}

.trust-banner-main {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #c89b51 !important;
}

.trust-banner-bottom {
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.85) !important;
}

@media (max-width: 767px) {
    .trust-banner-sub {
        font-size: 11px !important;
        color: #ffffff !important;
    }

    .trust-banner-main {
        font-size: 10px !important;
        color: #c89b51 !important;
    }

    .trust-banner-bottom {
        font-size: 8px !important;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    /* Precision Banner Mobile Fixes */
    .precision-banner-wrapper {
        padding: 15px 10px !important;
    }

    .precision-quote-col {
        padding: 5px 10px !important;
        margin-bottom: 8px !important;
    }

    .precision-quote-box {
        text-align: center !important;
        padding-top: 5px !important;
        padding-bottom: 10px !important;
    }

    .quote-mark {
        font-size: 50px !important;
    }

    .left-quote {
        top: -5px !important;
    }

    .right-quote {
        bottom: -20px !important;
    }

    .quote-text {
        font-size: 13.5px !important;
        line-height: 1.5em !important;
    }

    .precision-stats-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    .precision-stat-item {
        border-left: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding: 12px 10px !important;
        width: 100% !important;
        align-items: center !important;
        text-align: center !important;
    }

    .precision-stat-item:nth-child(odd):not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .precision-stat-item:last-child {
        grid-column: 1 / -1 !important;
        border-bottom: none !important;
    }

    .precision-stat-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 6px !important;
        width: 100% !important;
    }

    .precision-icon {
        margin-right: 0 !important;
        margin-bottom: 4px !important;
    }

    .precision-icon i {
        font-size: 20px !important;
    }

    .precision-icon .icon-circle {
        width: 24px !important;
        height: 24px !important;
        font-size: 14px !important;
    }

    .precision-title {
        font-size: 14px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .precision-title br {
        display: none !important;
    }

    .precision-desc {
        font-size: 11px !important;
        line-height: 1.35em !important;
        text-align: center !important;
    }

    .overview-description p {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }
}

/* ========================================= */
/* Extracted Internal Styles blocks          */
/* ========================================= */

.wcu-card {
    position: relative;
    border-radius: 20px;
    padding: 40px;
    height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    text-decoration: none !important;
}

.wcu-card:hover {
    transform: translateY(-3px);
}

.wcu-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.wcu-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.wcu-link {
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    transition: gap 0.3s ease;
}

.wcu-card:hover .wcu-link {
    gap: 12px;
}

.wcu-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    transition: transform 0.5s ease;
}

.wcu-card:hover .wcu-image {
    transform: scale(1.1);
}

/* Overlay to ensure text readability if image overlaps */
.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.wcu-watermark {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    font-size: 120px;
    font-weight: 800;
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -2px;
}

/* Colors based on the provided image */
.wcu-card-1,
.wcu-card-2,
.wcu-card-3 {
    background-color: #f4f5f6;
    color: #000000;
}

.wcu-card-1 h3,
.wcu-card-1 p,
.wcu-card-1 .wcu-link,
.wcu-card-2 h3,
.wcu-card-2 p,
.wcu-card-2 .wcu-link,
.wcu-card-3 h3,
.wcu-card-3 p,
.wcu-card-3 .wcu-link {
    color: #000000;
}

.wcu-card-1 .wcu-watermark,
.wcu-card-2 .wcu-watermark,
.wcu-card-3 .wcu-watermark {
    color: #000000;
    opacity: 0.05;
}


.cta-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    min-height: 350px;
    display: flex;
    align-items: center;
    background-color: #050505;
    text-align: left;
    /* Fallback for the left side */
}

.cta-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 130%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000 35%, rgba(0, 0, 0, 0.8) 55%, transparent 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px 80px;
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content p {
    color: #d1d1d1;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .cta-bg-image {
        width: 100%;
    }

    .cta-overlay {
        background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0, 0, 0, 0.5) 100%);
    }

    .cta-content h2 {
        font-size: 20px !important;
        margin-bottom: 0 !important;
        text-align: left !important;
    }

    .cta-content p {
        font-size: 13px !important;
        margin-bottom: 20px !important;
        text-align: left !important;
        line-height: 1.4 !important;
    }

    .cta-content {
        padding: 20px 15px !important;
        text-align: left !important;
    }

    .cta-btn {
        font-size: 13px !important;
        padding: 10px 20px !important;
        width: 100% !important;
        max-width: 250px !important;
    }
}


.custom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 15px;
}

.custom-gallery-grid .gallery-item img {
    transition: transform 0.5s ease;
}

.custom-gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .custom-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .custom-gallery-grid .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .custom-gallery-grid .span-2-col {
        grid-column: span 2 !important;
    }
}

@media (max-width: 767px) {
    .custom-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 130px !important;
    }

    .custom-gallery-grid .span-2-col {
        grid-column: span 1 !important;
    }

    /* Make the last item full width if there's an odd number of items */
    .custom-gallery-grid .gallery-item:last-child:nth-child(odd) {
        grid-column: span 2 !important;
    }

    /* Contact Section Mobile Overrides */
    .cta-section.extracted-style-83 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .extracted-style-85 {
        z-index: 1;
        padding: 0 15px !important;
    }

    .extracted-style-88 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .extracted-style-89 {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }

    .extracted-style-93 {
        padding: 20px 15px !important;
    }

    .extracted-style-94 {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    .icon-box.extracted-style-90 {
        width: 25px !important;
        height: 25px !important;
    }

    .icon-box.extracted-style-90 i {
        font-size: 12px !important;
    }

    .extracted-style-92 {
        font-size: 13px !important;
    }

    /* Footer Mobile Overrides */
    .main-footer::before {
        display: block !important;
        background: #000000 !important;
        opacity: 0.85 !important;
    }

    .main-footer::after {
        display: block !important;
    }

    .main-footer .footer-box [class*="col-"] {
        margin-bottom: 35px !important;
    }

    /* Hide gallery images after the first 4 on mobile */
    .custom-gallery-grid .gallery-item:nth-child(n+5) {
        display: none !important;
    }

    /* About Us Image Mobile Overrides */
    .extracted-style-12 {
        height: 250px !important;
        margin-bottom: 30px !important;
    }

    .extracted-style-13 {
        width: 100% !important;
        height: 100% !important;
    }

    .extracted-style-15 {
        top: 10px !important;
        right: 10px !important;
        width: 90px !important;
        height: 90px !important;
    }

    .extracted-style-15 p.display-4 {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .extracted-style-16 {
        font-size: 9px !important;
        margin-top: 5px !important;
    }

    .extracted-style-17 {
        width: 110px !important;
        height: 110px !important;
        right: -5px !important;
        bottom: -10px !important;
        border-width: 5px !important;
    }

    .main-footer .footer-copyright {
        flex-direction: column !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    .main-footer .about-footer {
        text-align: left !important;
    }

    .main-footer .footer-social-links ul {
        justify-content: flex-start !important;
    }

    .main-footer .footer-contact-links {
        text-align: left !important;
    }

    .main-footer .footer-contact-links ul li {
        justify-content: flex-start !important;
    }

    /* Prevent Contact Icons from stretching on mobile */
    .extracted-style-105 {
        width: 18px !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }
}



/* ========================================= */
/* Extracted Inline Styles                   */
/* ========================================= */
.extracted-style-1 {
    color: #ffffff !important;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.extracted-style-2 {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 250px;
}

.extracted-style-3 {
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.extracted-style-4 {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 320px;
}

.extracted-style-5 {
    line-height: 1;
}

.extracted-style-6 {
    color: var(--accent-color);
}

/* Separate class for We Build Confidence slogan */
.confidence-text {
    color: var(--accent-color);
    font-weight: 700;
    display: inline-block;
}

.extracted-style-7 {
    font-size: 10px !important;
    line-height: 1.1 !important;
}

.extracted-style-8 {
    height: 80px;
}

.extracted-style-9 {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.extracted-style-10 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.extracted-style-11 {
    background-color: #fcfcfc;
}

.extracted-style-12 {
    height: 550px;
    width: 100%;
    margin-bottom: 30px;
}

.extracted-style-13 {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.extracted-style-14 {
    object-fit: cover;
}

.extracted-style-15 {
    position: absolute;
    top: 30px;
    right: 0;
    width: 120px;
    height: 100px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.extracted-style-16 {
    font-size: 12px !important;
    line-height: 1.2em !important;
}

.extracted-style-17 {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 220px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid #fcfcfc;
    box-shadow: -5px -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.extracted-style-18 {
    font-size: 15px;
    color: #444;
    font-weight: 400 !important;
}

.extracted-style-19 {
    color: var(--accent-color);
    font-size: 16px;
    line-height: 1.2rem;
}

.extracted-style-20 {
    color: var(--accent-color);
    font-size: 16px;
}

.extracted-style-21 {
    background: var(--primary-color);
    color: #ffffff;
}

.extracted-style-22 {
    color: #ffffff !important;
    font-size: 44px !important;
    margin-bottom: 5px;
}

.extracted-style-23 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.extracted-style-24 {
    position: relative;
}

.extracted-style-25 {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: center;
}

.extracted-style-26 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.extracted-style-27 {
    color: #fff;
}

.extracted-style-28 {
    padding: 50px 0;
    background-color: #fff;
}

.extracted-style-29 {
    background-image: url('../images/hero-image-silver.png');
}

.extracted-style-30 {
    background-image: url('../images/feature-item-image-2.png');
}

.extracted-style-31 {
    background-image: url('../images/sidebar-body-image.png');
}

.extracted-style-32 {
    font-size: 13px !important;
    color: var(--accent-color) !important;
    font-weight: 600 !important;
}

.extracted-style-33 {
    padding: 80px 0 0 0;
    background-color: hsl(48, 33%, 97%);
}

.extracted-style-34 {
    top: -30px;
    padding: 0;
}

.extracted-style-35 {
    font-size: 13px !important;
    letter-spacing: 2px;
    color: #000000;
}

.extracted-style-36 {
    font-size: 15px !important;
    max-width: 1200px;
    line-height: 1.2 !important;
}

.extracted-style-37 {
    background-color: #faf9f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.extracted-style-38 {
    font-size: 13px !important;
    letter-spacing: 1px;
}

.extracted-style-39 {
    color: var(--accent-color);
    font-size: 18px !important;
    letter-spacing: 1px;
    color: #000;
}

.extracted-style-40 {
    height: 2px;
    width: 150px;
    background: var(--accent-color);
    opacity: 0.7;
}

.extracted-style-41 {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    margin: 0 8px;
}

.extracted-style-42 {
    width: 350px;
    height: 80px;
    pointer-events: none;
}

.extracted-style-43 {
    width: 100%;
    height: 100%;
}

.extracted-style-44 {
    width: 350px;
    height: 80px;
    pointer-events: none;
    transform: scaleX(-1);
}

.extracted-style-45 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.extracted-style-46 {
    color: #ffffff !important;
}

.extracted-style-47 {
    color: #cccccc;
    font-size: 13px !important;
    line-height: 1.6;
    margin-top: 12px;
    text-align: left;
    max-width: 100%;
    font-weight: 400;
}

.extracted-style-48 {
    margin-top: 15px;
}

.extracted-style-49 {
    background-image: url('../images/project-image-1-gold.jpg');
}

.extracted-style-50 {
    background-image: url('../images/project-image-2-gold.jpg');
}

.extracted-style-51 {
    background-image: url('../images/what-we-item-image-1-gold.jpg');
}

.extracted-style-52 {
    font-size: 0.8em;
    margin-left: 5px;
}

.extracted-style-53 {
    padding: 50px 0;
    background: #fff;
}

.extracted-style-54 {
    background-image: url('../assets/homepage/cta-section.png');
}

.extracted-style-55 {
    text-align: left !important;
    padding-top: 10px !important;
}

.extracted-style-56 {
    transform: rotate(-45deg);
}

.extracted-style-57 {
    padding: 50px 0;
    overflow: hidden;
    background: #000;
}

.extracted-style-58 {
    font-size: 28px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff !important;
}

.extracted-style-59 {
    gap: 20px;
}

.extracted-style-60 {
    padding: 0;
    min-width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.extracted-style-61 {
    max-height: 45px;
    max-width: 140px;
    object-fit: contain;
}

.extracted-style-62 {
    padding: 50px 0 30px 0;
    background: #fff;
}

.extracted-style-63 {
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1.1;
    color: #111;
    padding-bottom: 30px !important;
}

.extracted-style-64 {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.extracted-style-65 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.extracted-style-66 {
    background: #f4f6f8;
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.extracted-style-67 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.extracted-style-68 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.extracted-style-69 {
    color: var(--accent-color);
    font-size: 14px;
}

.extracted-style-70 {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.extracted-style-71 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.extracted-style-72 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-testimonial-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #c5a059;
    font-size: 20px;
    border: 2px solid #c5a059;
    flex-shrink: 0;
}

.extracted-style-73 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111;
    margin: 0;
}

.extracted-style-74 {
    font-size: 12px !important;
    color: #4b4b4b;
    font-weight: 600;
}

.extracted-style-75 {
    padding: 50px 0;
    background: #f8f9fa;
}

.extracted-style-76 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.extracted-style-77 {
    justify-content: center;
    display: flex;
    width: 100%;
    text-align: center;
}

.extracted-style-78 {
    grid-column: span 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.extracted-style-79 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extracted-style-80 {
    grid-column: span 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.extracted-style-81 {
    grid-column: span 1;
    grid-row: span 2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.extracted-style-82 {
    background: var(--accent-color);
    color: #fff;
    padding: 10px 30px !important;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 1px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.extracted-style-83 {
    background: url('../assets/homepage/amika-image1.png') no-repeat center center/cover;
}

.extracted-style-84 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.85);
}

.extracted-style-85 {
    z-index: 1;
    padding: 0 40px;
}

.extracted-style-86 {
    text-align: left !important;
}

.extracted-style-87 {
    color: #fff !important;
}

.extracted-style-88 {
    text-align: left !important;
    font-size: 28px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

.extracted-style-89 {
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    opacity: 0.9 !important;
}

.extracted-style-90 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.extracted-style-91 {
    color: var(--accent-color);
    font-size: 13px;
}

.extracted-style-92 {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0;
}

.extracted-style-93 {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.extracted-style-94 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0D0D0D !important;
    margin-bottom: 20px !important;
}

.extracted-style-95 {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    height: auto !important;
}

.extracted-style-96 {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    resize: none !important;
}

.extracted-style-97 {
    opacity: 0.8;
    font-size: 15px;
}

.extracted-style-98 {
    padding: 0;
}

.extracted-style-99 {
    display: inline-block;
    margin-right: 15px;
}

.extracted-style-100 {
    font-size: 18px;
}

.extracted-style-101 {
    margin-bottom: 20px;
}

.extracted-style-102 {
    margin-bottom: 10px;
}

.extracted-style-103 {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.extracted-style-104 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.extracted-style-105 {
    width: 18px;
    margin-right: 15px;
    margin-top: 4px;
}

.extracted-style-106 {
    word-break: break-all;
}

.extracted-style-107 {
    color: var(--accent-color);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 4px;
    min-width: 18px;
    text-align: center;
}

.extracted-style-108 {
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================= */
/* Comprehensive Responsive Overrides        */
/* ========================================= */

@media (max-width: 991px) {

    [class*="extracted-style-"] {
        max-width: 100% !important;
        font-size: 12px !important;
    }

    /* Button & Container Widths */
    .extracted-style-2,
    .extracted-style-4 {
        min-width: 0 !important;
        width: 100% !important;
    }

    /* Hero/Banner Heights */
    .extracted-style-12 {
        height: 550px !important;
        width: 100% !important;
        margin-bottom: -25px !important;
    }

    /* Floating Statistic Boxes */
    .extracted-style-15 {
        width: 100px !important;
        height: 100px !important;
        top: 10px !important;
    }

    /* Testimonials Mobile Slider */
    .testimonials-slider-mobile {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
        -ms-overflow-style: none;
        /* Hide IE/Edge */
        padding-bottom: 20px;
    }

    .testimonials-slider-mobile::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .testimonials-slider-mobile>div[class*="col-"] {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center;
        padding-right: 15px;
        /* Ensure spacing between cards */
    }

    /* Testimonials Header Compact Mobile Overrides */
    .extracted-style-63 {
        font-size: 18px !important;
        padding-bottom: 0px !important;
        line-height: 1.2 !important;
    }

    .extracted-style-65 {
        width: 35px !important;
        height: 35px !important;
    }

    .extracted-style-65 i {
        font-size: 14px !important;
    }

    .section-title .text-anime-style-3.h3 {
        font-size: 12px !important;
        margin-bottom: 2px !important;
        letter-spacing: 1px !important;
    }

    .extracted-style-17 {
        width: 150px !important;
        height: 150px !important;
    }

    /* Large Typography */
    .extracted-style-22 {
        font-size: clamp(28px, 4vw, 36px) !important;
    }

    /* Component Fixes */
    .wcu-card {
        height: 400px !important;
        padding: 30px !important;
    }
}

@media (max-width: 767px) {
    .extracted-style-12 {
        height: 350px !important;
    }

    .wcu-card {
        height: 350px !important;
        padding: 20px !important;
    }

    .wcu-card h3 {
        font-size: 24px !important;
    }

    .extracted-style-15 {
        width: 85px !important;
        height: 85px !important;
        padding: 5px !important;
    }

    .extracted-style-15 .extracted-style-5 {
        font-size: 26px !important;
    }

    .extracted-style-15 .extracted-style-16 {
        font-size: 10px !important;
        line-height: 1.1 !important;
        margin-top: 2px !important;
    }

    .extracted-style-17 {
        width: 100px !important;
        height: 100px !important;
    }

    .extracted-style-22 {
        font-size: clamp(22px, 5vw, 28px) !important;
    }

    .extracted-style-8 {
        height: 60px !important;
    }

    .cta-container {
        min-height: auto !important;
    }
}

/* ========================================= */
/* Specific Fixes for Dark Sections          */
/* ========================================= */

.portfolio-header-title h2,
.portfolio-header-title p,
.extracted-style-86 h2,
.extracted-style-86 p,
.extracted-style-89,
.cta-content p {
    color: #ffffff !important;
    text-align: left !important;
}

/* ========================================= */
/* Our Approach Section CSS                  */
/* ========================================= */

.our-approach-section {
    background: #ffffff;
    padding: 0;
}

.approach-intro-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
    max-width: 90%;
}

.approach-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approach-list-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 15px;
    background: #fcfcfc;
    border-left: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.approach-list-item:hover {
    border-left-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
    background: #ffffff;
}

.approach-icon-box {
    width: 35px;
    height: 35px;
    min-width: 35px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.approach-list-item:hover .approach-icon-box {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.approach-text-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
    color: var(--primary-color);
}

.approach-text-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0;
    color: #555;
}

.approach-image-box img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .approach-image-box {
        margin-top: 40px;
    }
}

/* ========================================= */
/* Extracted Service Pages Styles */
/* ========================================= */

.service-style-c27247 {
    background: url('../images/hero-bg-image.jpg') no-repeat center center/cover !important;
}

.service-style-20a80b {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15) !important;
}

.service-style-74a0dc {
    z-index: 1;
    padding: 0 40px;
}

.service-style-666ca2 {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05) !important;
}

.service-style-6c1860 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 8px;
}

.service-style-eaf31f {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.service-style-efef60 {
    text-align: left !important;
    font-size: 28px !important;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 15px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.service-style-35f1ad {
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    opacity: 0.9 !important;
    color: #333333 !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.service-style-427726 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.service-style-c0252f {
    color: var(--accent-color);
    font-size: 13px;
}

.service-style-c3c42f {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 0;
    color: #000000 !important;
}

.service-style-850083 {
    color: #ffffff !important;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-style-4224c0 {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 250px;
}

.service-style-b5dea3 {
    color: #fff;
    padding: 10px 20px;
    font-weight: 500;
}

.service-style-051149 {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 0px;
    min-width: 280px;
}

.service-style-035ace {
    opacity: 0.8;
    font-size: 15px;
}

.service-style-b662f2 {
    padding: 0;
}

.service-style-fc54dd {
    display: inline-block;
    margin-right: 15px;
}

.service-style-768e1f {
    font-size: 18px;
}

.service-style-7002f9 {
    margin-bottom: 20px;
}

.service-style-3301ea {
    margin-bottom: 10px;
}

.service-style-18c7b2 {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.service-style-992890 {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.service-style-3083cd {
    width: 18px;
    margin-right: 15px;
    margin-top: 4px;
}

.service-style-108320 {
    word-break: break-all;
}

.service-style-584b17 {
    opacity: 0.8;
    line-height: 1.6;
}

.service-style-287d0a {
    background-image: url('images/project-image-1.jpg');
    padding: 180px 0 120px;
    position: relative;
}

.service-style-49f5cc {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.service-style-83d7ea {
    position: relative;
    z-index: 1;
}

.service-style-215f73 {
    font-size: 52px;
    font-weight: 600 !important;
    margin-bottom: 20px;
}

.service-style-6211b0 {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.service-style-6dccfd {
    color: var(--accent-color);
    font-weight: 500;
}

.service-style-421b99 {
    color: #fff;
}

.service-style-514bd7 {
    padding: 70px 0 !important;
}

.service-style-addc52 {
    position: relative !important;
}

.service-style-a1779b {
    width: 100% !important;
    height: 450px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-style-871169 {
    position: absolute !important;
    bottom: -20px !important;
    right: -20px !important;
    background: var(--accent-color) !important;
    padding: 20px 25px !important;
    border-radius: 4px !important;
    border: 8px solid #fff !important;
}

.service-style-be8737 {
    font-size: 28px !important;
    margin: 0 !important;
    font-weight: 700 !important;
}

.service-style-7f3599 {
    font-size: 13px !important;
}

.service-style-9ddd0d {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.service-style-788f73 {
    text-align: left !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    margin-bottom: 5px !important;
    justify-content: flex-start !important;
    display: flex !important;
    align-items: center !important;
}

.service-style-dc366d {
    text-align: left !important;
    font-size: 32px !important;
    justify-content: flex-start !important;
    font-weight: 600 !important;
}

.service-style-138ca5 {
    color: #666 !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 25px !important;
}

.service-style-f2d1fc {
    color: var(--accent-color) !important;
    font-size: 20px !important;
    margin-right: 12px !important;
    margin-top: 2px !important;
}

.service-style-e8c868 {
    font-size: 16px !important;
    margin-bottom: 5px !important;
}

.service-style-969216 {
    color: #777 !important;
    font-size: 13px !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.service-style-c1b4f6 {
    padding: 40px 0;
    background: #fff;
}

.service-style-5c437e {
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 5px !important;
    font-weight: 700 !important;
}

.service-style-caed34 {
    font-size: 30px !important;
}

.service-style-f2573b {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-style-b536bb {
    font-size: 20px !important;
    font-weight: 600 !important;
}

.service-style-71c73d {
    font-size: 23px !important;
    font-weight: 600 !important;
}

.service-style-e9843a {
    font-weight: 500 !important;
}

.service-style-0021b7 {
    background-color: #cecece;
    padding: 40px 0;
}

.service-style-6ae2bc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.service-style-9d2727 {
    font-size: 14px !important;
    letter-spacing: 1px !important;
    margin: 0 !important;
    text-transform: uppercase;
}

.service-style-f61233 {
    font-size: 28px !important;
    color: #111;
    margin-bottom: 15px !important;
    justify-content: center !important;
    display: flex !important;
}

.service-style-70a0eb {
    font-size: 15px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-style-3a8781 {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-style-8fb847 {
    font-size: 24px;
    color: #1f2742;
    margin-bottom: 15px;
}

.service-style-12ac2d {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.service-style-be5836 {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-style-7e77fc {
    padding: 40px 0;
    background-color: #ffffff;
}

.service-style-c18ff1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-style-edf98d {
    background: rgba(212, 175, 55, 0.1);
    padding: 22px 20px;
    border-radius: 15px;
    max-width: 340px;
    margin-left: auto;
}

.service-style-088fd7 {
    width: 32px;
    height: 32px;
    background: #D4AF37;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-style-aaab24 {
    color: #ffffff;
    font-size: 13px;
}

.service-style-0644eb {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.service-style-cf88d6 {
    font-weight: 600;
    color: var(--heading-color);
}

.service-style-d2981e {
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    width: 100%;
    background: #e5e5e5;
    display: block;
}

.service-style-7d1fae {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-style-43ced2 {
    background: rgba(212, 175, 55, 0.1);
    padding: 22px 20px;
    border-radius: 15px;
    max-width: 340px;
    margin-right: auto;
}

.service-style-f73007 {
    padding: 60px 100px !important;
}

.service-style-8420a6 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
}

.service-style-af918e {
    opacity: 0.8;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 0;
}

.service-style-2bb625 {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 25px 25px !important;
    height: 100% !important;
    transition: transform 0.3s !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.service-style-9fdca3 {
    width: 35px !important;
    height: 35px !important;
    background: var(--accent-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 15px !important;
}

.service-style-b1f2ea {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.service-style-e8e196 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
}

.service-style-2bb625 h5 {
    color: #c89b51 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

.service-style-986395 {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.service-style-2f9d52 {
    background-color: #ffffff;
}

.service-style-a43a7b {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.service-style-a78962 {
    text-align: left !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    color: #1a1a2e !important;
    justify-content: flex-start !important;
    display: flex !important;
}

.service-style-2010c8 {
    text-align: left !important;
    font-size: 15px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.service-style-0e5916 {
    background: #fff;
    border: 1px solid #c89b51;
    border-radius: 12px;
    padding: 18px 5px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.service-style-23192b {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    background: #f0f4ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-style-21a6ba {
    color: #c89b51 !important;
    font-size: 20px !important;
}

.service-style-8da6c1 {
    color: #444 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0;
}



.service-style-394b1b {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-style-25e737 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #0D0D0D !important;
    margin-bottom: 20px !important;
}

.service-style-5b4e48 {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    height: auto !important;
}

.service-style-e7b31e {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    resize: none !important;
}

.service-style-64d76d {
    text-align: left !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    justify-content: flex-start !important;
    display: flex !important;
}

.service-style-409e95 {
    text-align: left !important;
    margin: 0 0 35px 0 !important;
}


/* ========================================= */
/* Internal <style> Blocks Extracted */
/* ========================================= */

/* Extracted from services.html */
.page-services .service-item {
    border: 1px solid var(--accent-color) !important;
    border-radius: 8px !important;
}

/* Extracted from services.html */
.what-we-do {
    padding: 60px 0 !important;
}

.what-we-do .section-title h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
}

.what-we-do .section-title h3 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

.what-we-do .section-title p {
    font-size: 15px !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
}

.what-we-do .what-we-do-item {
    padding: 20px !important;
    margin-bottom: 15px !important;
    border-radius: 8px !important;
}

.what-we-do .what-we-do-item .icon-box {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    margin-bottom: 15px !important;
}

.what-we-do .what-we-do-item .icon-box img {
    width: 24px !important;
}

.what-we-do .what-we-do-item-body h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.what-we-do .what-we-do-item-body p {
    font-size: 14px !important;
    margin-bottom: 10px !important;
    line-height: 1.5 !important;
}

.what-we-do .what-we-do-item-body ul li {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 5px !important;
    padding-left: 20px !important;
}

.what-we-do .what-we-do-item-body ul li::before {
    top: 3px !important;
}

.what-we-do .what-we-do-btn {
    margin-top: 20px !important;
}

.what-we-do .what-we-do-btn .btn-default {
    padding: 12px 25px !important;
    font-size: 14px !important;
}

.what-we-do .what-we-do-image figure img {
    max-width: 85% !important;
    margin: 0 auto !important;
    display: block !important;
    border-radius: 8px !important;
}

.what-we-do .section-footer-text {
    padding: 20px 0 0 0 !important;
    margin-top: 20px !important;
}

.what-we-do .section-footer-text p {
    font-size: 15px !important;
}

.what-we-do .satisfy-client-images .satisfy-client-image {
    width: 40px !important;
    height: 40px !important;
}

/* Extracted from service-details.html */
.process-accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 25px 0 !important;
    background: transparent !important;
}

.process-accordion .accordion-item:first-child {
    border-top: 1px solid #e0e0e0 !important;
}

.process-accordion .accordion-button {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: left !important;
}

.process-accordion .accordion-button:not(.collapsed) {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.process-accordion .accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease-in-out !important;
    color: #000 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

.process-accordion .accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

.process-accordion .accordion-body {
    padding: 20px 0 0 35px !important;
    color: #777 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.process-accordion .step-number {
    font-size: 14px !important;
    color: #111 !important;
    margin-right: 15px !important;
    margin-top: -6px !important;
    font-weight: 400 !important;
}

.process-accordion .step-title {
    font-size: 28px !important;
    color: #111 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Extracted from service-details.html */
.why-choose-us .choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.why-choose-us .choose-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Extracted from service-details.html */
.industry-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Extracted from service-details.html */
.faq-accordion .accordion-header .accordion-button {
    font-weight: 600 !important;
}

.faq-accordion .accordion-item .accordion-body p {
    font-size: 14px !important;
}

/* Extracted from construction-management.html */
.process-accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 25px 0 !important;
    background: transparent !important;
}

.process-accordion .accordion-item:first-child {
    border-top: 1px solid #e0e0e0 !important;
}

.process-accordion .accordion-button {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: left !important;
}

.process-accordion .accordion-button:not(.collapsed) {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.process-accordion .accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease-in-out !important;
    color: #000 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

.process-accordion .accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

.process-accordion .accordion-body {
    padding: 20px 0 0 35px !important;
    color: #777 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.process-accordion .step-number {
    font-size: 14px !important;
    color: #111 !important;
    margin-right: 15px !important;
    margin-top: -6px !important;
    font-weight: 400 !important;
}

.process-accordion .step-title {
    font-size: 28px !important;
    color: #111 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Extracted from construction-management.html */
.industry-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Extracted from construction-management.html */
.faq-accordion .accordion-header .accordion-button {
    font-weight: 600 !important;
}

.faq-accordion .accordion-item .accordion-body p {
    font-size: 14px !important;
}

/* Extracted from project-execution.html */
.process-accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 25px 0 !important;
    background: transparent !important;
}

.process-accordion .accordion-item:first-child {
    border-top: 1px solid #e0e0e0 !important;
}

.process-accordion .accordion-button {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: left !important;
}

.process-accordion .accordion-button:not(.collapsed) {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.process-accordion .accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease-in-out !important;
    color: #000 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

.process-accordion .accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

.process-accordion .accordion-body {
    padding: 20px 0 0 35px !important;
    color: #777 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.process-accordion .step-number {
    font-size: 14px !important;
    color: #111 !important;
    margin-right: 15px !important;
    margin-top: -6px !important;
    font-weight: 400 !important;
}

.process-accordion .step-title {
    font-size: 28px !important;
    color: #111 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Extracted from project-execution.html */
.industry-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Extracted from project-execution.html */
.faq-accordion .accordion-header .accordion-button {
    font-weight: 600 !important;
}

.faq-accordion .accordion-item .accordion-body p {
    font-size: 14px !important;
}

/* Extracted from project-planning-technical-consultancy.html */
.process-accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 25px 0 !important;
    background: transparent !important;
}

.process-accordion .accordion-item:first-child {
    border-top: 1px solid #e0e0e0 !important;
}

.process-accordion .accordion-button {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: left !important;
}

.process-accordion .accordion-button:not(.collapsed) {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.process-accordion .accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease-in-out !important;
    color: #000 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

.process-accordion .accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

.process-accordion .accordion-body {
    padding: 20px 0 0 35px !important;
    color: #777 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.process-accordion .step-number {
    font-size: 14px !important;
    color: #111 !important;
    margin-right: 15px !important;
    margin-top: -6px !important;
    font-weight: 400 !important;
}

.process-accordion .step-title {
    font-size: 28px !important;
    color: #111 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Extracted from project-planning-technical-consultancy.html */
.industry-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Extracted from project-planning-technical-consultancy.html */
.faq-accordion .accordion-header .accordion-button {
    font-weight: 600 !important;
}

.faq-accordion .accordion-item .accordion-body p {
    font-size: 14px !important;
}

/* Extracted from self-redevelopment-consultancy.html */
.process-accordion .accordion-item {
    border: none !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.process-accordion .accordion-item:first-child {
    border-top: 1px solid #e0e0e0 !important;
}

.process-accordion .accordion-button {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    width: 100% !important;
    text-align: left !important;
}

.process-accordion .accordion-button:not(.collapsed) {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.process-accordion .accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    margin-left: auto !important;
    transition: transform 0.2s ease-in-out !important;
    color: #000 !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
}

.process-accordion .accordion-button:not(.collapsed)::after {
    content: '-' !important;
    transform: none !important;
}

.process-accordion .accordion-body {
    padding: 20px 0 0 35px !important;
    color: #777 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

.process-accordion .step-number {
    font-size: 17px !important;
    color: #111 !important;
    margin-right: 15px !important;
    margin-top: 0 !important;
    font-weight: 600 !important;
}

.process-accordion .step-title {
    font-size: 22px !important;
    color: #111 !important;
    margin: 0 !important;
    font-weight: 600 !important;
}

/* Extracted from self-redevelopment-consultancy.html */
.industry-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Extracted from self-redevelopment-consultancy.html */
.faq-accordion .accordion-header .accordion-button {
    font-weight: 600 !important;
}

.faq-accordion .accordion-item .accordion-body p {
    font-size: 14px !important;
}

/* ========================================= */
/* Service Pages Responsive Fixes */
/* ========================================= */
@media (max-width: 767px) {

    .service-details,
    .company-certifications,
    .our-approach-section {
        padding: 0 !important;
    }

    .service-details img,
    .service-body img,
    .industry-card img {
        max-width: 100% !important;
        height: auto !important;
    }

    .process-accordion .step-title {
        font-size: 20px !important;
    }

    .industry-card {
        margin-bottom: 20px !important;
    }
}

/* ========================================= */
/* History Page CTA Section Extracted Styles */
/* ========================================= */
.history-cta-section {
    background-color: #ddd !important;
    padding: 80px 0 !important;
}

.history-cta-container {
    z-index: 1;
    padding: 0 40px !important;
}

.history-cta-section .history-cta-badge {
    display: inline-flex !important;
    align-items: center !important;
    border: 1px solid var(--accent-color) !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    background: rgba(0, 0, 0, 0.05) !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.history-cta-badge-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent-color) !important;
    margin-right: 8px !important;
}

.history-cta-badge-text {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.history-cta-section .history-cta-title {
    text-align: left !important;
    font-size: 28px;
    line-height: 1.3 !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
    width: 100% !important;
}

.history-cta-section .history-cta-desc {
    text-align: left !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    opacity: 0.8 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: block !important;
    width: 100% !important;
}

.history-cta-info-box {
    border: 1px solid var(--accent-color) !important;
    padding: 5px !important;
    border-radius: 25px !important;
}

.history-cta-info-icon {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 12px !important;
}

.history-cta-info-icon i {
    color: var(--accent-color) !important;
    font-size: 13px !important;
}

.history-cta-info-text {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin: 0 !important;
}

.history-cta-form-wrapper {
    background: #c0c0c0 !important;
    padding: 25px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

.history-cta-form-title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    margin-bottom: 20px !important;
}

.history-cta-form-input {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    height: auto !important;
    color: #000000 !important;
}

.history-cta-form-textarea {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    resize: none !important;
    color: #000000 !important;
}

/* Responsiveness for History CTA Section */
@media (max-width: 991px) {
    .history-cta-section {
        padding: 50px 0 !important;
    }

    .history-cta-container {
        padding: 0 20px !important;
    }

    .history-cta-title {
        font-size: 24px !important;
    }

    .history-cta-form-wrapper {
        margin-top: 40px !important;
    }
}

@media (max-width: 767px) {
    .history-cta-title {
        font-size: 22px !important;
    }
}

/* ========================================= */
/* Team Page Extracted Styles                */
/* ========================================= */
.team-header-section {
    background: #fbfbfb !important;
    padding: 60px 0;
}

.team-header-title-dark {
    color: #222 !important;
}

.team-header-title-accent {
    color: var(--accent-color) !important;
}

.team-header-divider {
    border-bottom: 2px solid var(--accent-color) !important;
    margin-top: 30px !important;
    opacity: 0.5 !important;
}

.team-usp-experience-1 {
    -webkit-mask-image: url('../images/icon-team-experience-1.svg') !important;
    mask-image: url('../images/icon-team-experience-1.svg') !important;
}

.team-usp-feature-1 {
    -webkit-mask-image: url('../images/icon-project-feature-1.svg') !important;
    mask-image: url('../images/icon-project-feature-1.svg') !important;
}

.team-usp-experience-4 {
    -webkit-mask-image: url('../images/icon-team-experience-4.svg') !important;
    mask-image: url('../images/icon-team-experience-4.svg') !important;
}

.org-chart-wrapper-custom {
    padding: 20px 0 60px 0 !important;
    background: #fbfbfb !important;
}

.org-chart-container-custom {
    max-width: 100% !important;
    padding: 0 40px !important;
}

/* Responsiveness adjustments for Org Chart & Team Page */
@media (max-width: 991px) {
    .team-header-section {
        padding: 40px 0 !important;
    }

    .org-chart-container-custom {
        padding: 0 20px !important;
    }
}

@media (max-width: 767px) {
    .oc-nodes {
        justify-content: center !important;
        gap: 10px !important;
    }

    .oc-node {
        width: calc(50% - 8px) !important;
        max-width: 170px !important;
        margin: 0 0 10px 0 !important;
    }

    .oc-card-img {
        height: 120px !important;
    }

    .founder-image-v2 img {
        width: 100% !important;
        height: 440px !important;
        object-fit: contain !important;
    }
}

/* ========================================= */
/* Portfolio Page Custom Utility Styles      */
/* ========================================= */
.brand-logo-text {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.brand-logo-img {
    height: 68px !important;
    max-height: 68px !important;
    width: auto !important;
    max-width: 240px !important;
    display: block;
}

.footer-logo-img {
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    max-width: 200px !important;
    display: inline-block;
}

.dropdown-menu-custom-about {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0 !important;
    min-width: 250px !important;
}

.dropdown-menu-custom-services {
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0 !important;
    margin-top: 0px !important;
    min-width: 280px !important;
}

.dropdown-item-custom {
    color: #fff !important;
    padding: 10px 20px !important;
    font-weight: 500 !important;
}

/* Footer Utility Styles */
.footer-brand-title {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}

.footer-about-text {
    opacity: 0.8 !important;
    font-size: 15px !important;
}

.footer-social-list {
    padding: 0 !important;
    list-style: none !important;
}

.footer-social-item {
    display: inline-block !important;
    margin-right: 15px !important;
}

.footer-social-link {
    font-size: 18px !important;
}

.footer-section-title {
    margin-bottom: 20px !important;
}

.footer-menu-item {
    margin-bottom: 10px !important;
}

.footer-contact-list {
    padding-left: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.footer-contact-item {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 15px !important;
}

.footer-contact-icon {
    width: 18px !important;
    margin-right: 15px !important;
    margin-top: 4px !important;
}

.footer-contact-text-wrap {
    word-break: break-all !important;
}

.footer-contact-address {
    opacity: 0.8 !important;
    line-height: 1.6 !important;
}

/* Responsiveness overrides for Portfolio page wrapper */
@media (max-width: 991px) {
    .portfolio-page-wrapper {
        padding: 40px 0 !important;
    }
}

/* Contact Page Mobile Overrides */
@media (max-width: 991px) {
    .page-contact-us {
        padding: 40px 0 !important;
    }

    .contact-us-form {
        margin-left: 0 !important;
        padding: 25px !important;
        margin-top: 30px !important;
    }

    .contact-info-list {
        max-width: 100% !important;
    }
}

@media (max-width: 767px) {
    .contact-us-content .section-title h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .contact-us-content .section-title h3 {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }

    .contact-info-item-content h3 {
        font-size: 20px !important;
        margin-bottom: 5px !important;
        font-weight: 600 !important;
    }

    .contact-info-item-content p {
        font-size: 14px !important;
        margin: 5px 0 0 !important;
    }

    .contact-info-item {
        padding-bottom: 15px !important;
        margin-bottom: 15px !important;
    }

    .contact-info-item .icon-box {
        width: 35px !important;
        height: 35px !important;
        margin-right: 15px !important;
    }

    .contact-info-item .icon-box img {
        max-width: 16px !important;
    }

    .contact-us-form .section-title h2 {
        font-size: 20px !important;
    }
}

/* Industries/Sectors Section Left Align Override */
.industries-serve .section-title {
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.industries-serve .section-title h2,
.industries-serve .section-title p,
.industries-serve .section-title h3 {
    text-align: left !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    align-self: flex-start !important;
}

.industries-serve .section-title .wow {
    align-self: flex-start !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
}

/* Service Page Responsive Overrides */
@media (max-width: 991px) {
    .service-style-f73007 {
        padding: 40px 20px !important;
    }

    .service-style-a1779b {
        height: 320px !important;
    }

    .service-style-d2981e {
        height: 350px !important;
        margin-bottom: 25px !important;
    }

    .service-style-edf98d {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .service-style-43ced2 {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .service-style-74a0dc {
        padding: 0 15px !important;
    }
}

@media (max-width: 767px) {
    .service-style-514bd7 {
        padding: 40px 0 !important;
    }

    .service-style-a1779b {
        height: 240px !important;
    }

    .service-style-871169 {
        bottom: -10px !important;
        right: -10px !important;
        padding: 10px 15px !important;
        border: 4px solid #fff !important;
    }

    .service-style-be8737 {
        font-size: 20px !important;
    }

    .service-style-7f3599 {
        font-size: 11px !important;
    }

    .service-style-dc366d {
        font-size: 24px !important;
    }

    .service-style-caed34 {
        font-size: 22px !important;
    }

    .service-style-71c73d {
        font-size: 16px !important;
    }

    .service-style-f2573b {
        height: 250px !important;
        margin-bottom: 20px !important;
    }

    .service-style-f61233 {
        font-size: 22px !important;
    }

    .service-style-f73007 {
        padding: 40px 15px !important;
    }

    .service-style-8420a6 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .service-style-af918e {
        margin-top: 5px !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .project-lifecycle .row>div.wow {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        margin-bottom: 12px !important;
    }

    .project-lifecycle .row>div.redevelopment-summary-banner {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 10px !important;
    }

    .redevelopment-summary-banner .banner-text {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .service-style-2bb625 {
        padding: 15px 12px !important;
    }

    .service-style-b1f2ea {
        font-size: 12px !important;
    }

    .service-style-e8e196 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
        font-weight: 500 !important;
    }

    .service-style-986395 {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .service-style-a78962 {
        font-size: 24px !important;
    }

    .service-style-efef60 {
        font-size: 20px !important;
    }

    .service-style-394b1b {
        padding: 20px 15px !important;
        margin-top: 20px !important;
    }

    .why-choose-us .section-title {
        margin-bottom: 10px !important;
    }

    .why-choose-us .row.mt-2 {
        margin-top: 5px !important;
    }

    /* Accordion Spacing Overrides on Mobile */
    .process-accordion .accordion-item {
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .process-accordion .accordion-button {
        padding: 12px 0px !important;
    }

    .process-accordion .step-number {
        font-size: 14px !important;
        margin-right: 8px !important;
    }

    .process-accordion .step-title {
        font-size: 15px !important;
    }

    /* Compact Industry/Sector Cards on Mobile */
    .service-style-0e5916 {
        padding: 12px 5px !important;
        border-radius: 8px !important;
    }

    .service-style-23192b {
        width: 32px !important;
        height: 32px !important;
        margin: 0 auto 6px !important;
        border-radius: 6px !important;
    }

    .service-style-21a6ba {
        font-size: 15px !important;
    }

    .service-style-8da6c1 {
        font-size: 11px !important;
    }
}

.vision-construction-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.vision-img-col {
    position: relative;
    min-height: 450px;
}

.vision-image-wrapper {
    border-radius: 0 40px 40px 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vision-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-content-padding {
    padding: 0 15px 0 30px;
}

.vision-section-title {
    position: relative;
}

.vision-section-title .dot-indicator {
    position: absolute;
    left: -20px;
    top: 35px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.vision-section-title h3 {
    color: var(--accent-color);
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 2px;
}

.vision-section-title h3 span {
    width: 20px;
    height: 1px;
    background: var(--accent-color);
    display: inline-block;
    margin-right: 8px;
}

.vision-section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vision-section-title p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 600px;
}

.vision-features-grid {
    max-width: 650px;
}

.vision-feature-item {
    padding: 20px;
}

.vision-feature-item .feature-num {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 12px;
    margin-right: 12px;
    background: #fff8f0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-feature-item h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #111;
    margin-bottom: 8px;
    margin-top: 2px;
}

.vision-feature-item p {
    color: #777;
    font-size: 12px;
    margin: 0;
    line-height: 1.6;
}

/* Default feature grid item spacing/borders */
.vision-features-grid .col-sm-6:nth-child(1) {
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 0 20px 20px 0;
}

.vision-features-grid .col-sm-6:nth-child(2) {
    border-bottom: 1px solid #eaeaea;
    padding: 0 0 20px 20px;
}

.vision-features-grid .col-sm-6:nth-child(3) {
    border-right: 1px solid #eaeaea;
    padding: 20px 20px 0 0;
}

.vision-features-grid .col-sm-6:nth-child(4) {
    padding: 20px 0 0 20px;
}

/* CTA Section Style */
.cta-section {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.cta-section .container {
    z-index: 1;
    padding: 0 40px;
}

.cta-section .section-title {
    text-align: left !important;
}

.cta-section .testimonial-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--accent-color);
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
}

.cta-section .testimonial-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 8px;
}

.cta-section .testimonial-badge .badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .section-title h2 {
    text-align: left !important;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
}

.cta-section .section-title p {
    text-align: left !important;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    opacity: 0.8;
}

.cta-feature-pill {
    display: flex;
    align-items: center;
    border: 1px solid var(--accent-color);
    padding: 5px;
    border-radius: 25px;
}

.cta-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.cta-icon-box i {
    color: var(--accent-color);
    font-size: 13px;
}

.cta-pill-text {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.contact-form-wrapper {
    background: #dadada;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper .form-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.cta-form-input {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    height: auto !important;
    color: #000000 !important;
}

.cta-form-textarea {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    resize: none !important;
    color: #000000 !important;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section .container {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .vision-construction-section {
        padding: 40px 0;
    }

    .vision-img-col {
        min-height: 300px;
    }

    .vision-image-wrapper {
        border-radius: 0 20px 20px 0;
    }

    .vision-content-padding {
        padding: 0 15px;
        margin-top: 20px;
    }

    .vision-features-grid .col-sm-6:nth-child(1),
    .vision-features-grid .col-sm-6:nth-child(2),
    .vision-features-grid .col-sm-6:nth-child(3),
    .vision-features-grid .col-sm-6:nth-child(4) {
        border-right: none !important;
        border-bottom: 1px solid #eaeaea !important;
        padding: 15px 0 !important;
    }

    .vision-features-grid .col-sm-6:nth-child(4) {
        border-bottom: none !important;
    }
}

/* History Page top spacing fix */
.our-journey-section,
.company-history-snake {
    padding-top: 80px !important;
}

@media (max-width: 991px) {

    .our-journey-section,
    .company-history-snake {
        padding-top: 60px !important;
    }
}

@media (max-width: 767px) {

    .our-journey-section,
    .company-history-snake {
        padding-top: 50px !important;
    }
}

/* Portfolio Quote Banner */
.portfolio-quote-banner {
    background-color: #0b1014;
    background-image: url('../images/dark-section-bg-image.png');
    background-blend-mode: overlay;
    padding: 30px 0;
    border-top: 1px solid #1f2529;
    border-bottom: 1px solid #1f2529;
}

.portfolio-quote-left-img {
    max-height: 80px;
    opacity: 0.9;
}

.quote-icon {
    flex-shrink: 0;
    margin-top: -5px;
}

.portfolio-quote-icon {
    width: 45px;
    height: auto;
}

.portfolio-quote-text {
    color: #d1d1d1;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    font-family: var(--body-font);
}

.quote-highlight {
    color: var(--accent-color);
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .portfolio-quote-banner {
        padding: 20px 0;
    }

    .portfolio-quote-left-img-wrapper {
        margin-bottom: 15px !important;
    }

    .portfolio-quote-left-img {
        max-height: 50px;
    }

    .portfolio-quote-icon {
        width: 30px;
    }

    .portfolio-quote-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Core Values Mobile 2-column Grid */
@media (max-width: 767px) {
    .core-values-items {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        padding: 10px 0 !important;
        justify-content: flex-start !important;
    }

    .core-value-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px 10px !important;
        border-right: 1px solid rgba(211, 164, 92, 0.2) !important;
        border-bottom: 1px solid rgba(211, 164, 92, 0.2) !important;
    }

    .core-value-item:nth-child(even) {
        border-right: none !important;
    }

    .core-value-item.border-0 {
        border-right: 1px solid rgba(211, 164, 92, 0.2) !important;
    }

    .core-value-item:last-child {
        border-right: none !important;
        border-bottom: none !important;
        flex: 0 0 100% !important;
        /* Make the 5th item take full width */
        max-width: 100% !important;
    }

    .cv-icon {
        margin-top: 0 !important;
        margin-bottom: 15px !important;
        font-size: 28px !important;
    }

    .cv-text h4 {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    .cv-text p {
        font-size: 12px !important;
    }
}

/* Stats Section Updates */
.stat-number,
.stat-suffix {
    color: var(--accent-color) !important;
}

@media (max-width: 767px) {
    .stat-number {
        font-size: 36px !important;
    }

    .stat-suffix {
        font-size: 24px !important;
    }

    .stat-item-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
    }

    .stat-desc {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .stat-item {
        padding: 10px 5px !important;
        margin-bottom: 20px !important;
    }
}

/* Standards Mobile 2-column Grid */
@media (max-width: 767px) {
    .standards-ribbon p br {
        display: none !important;
    }

    .standards-ribbon p {
        font-size: 22px !important;
        font-weight: 600px;
    }

    .standards-items {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .standard-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px 10px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .standard-item:nth-child(even) {
        border-right: none !important;
    }

    .standard-item.border-0 {
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .standard-item:last-child {
        border-right: none !important;
        border-bottom: none !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .standard-icon {
        margin-right: 0 !important;
        margin-bottom: 15px !important;
        font-size: 32px !important;
    }

    .iso-title {
        font-size: 13px !important;
        margin-bottom: 5px !important;
        display: block !important;
    }

    .iso-desc {
        font-size: 11px !important;
    }
}

.cta-section .section-title p {
    color: #000000 !important;
}

/* ========================================= */
/* Quality & Safety Standards Section        */
/* ========================================= */
.quality-safety-section {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.quality-bg-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px !important;
}

.quality-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.quality-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.quality-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 !important;
}

.quality-row {
    width: 100%;
    margin: 0 !important;
    height: 100%;
}

/* Left Panel */
.quality-left-col {
    background-color: #ffffff !important;
    clip-path: polygon(0 0, 95% 0, 100% 100%, 0 100%);
    position: relative;
    height: 100%;
    padding: 0 !important;
}

.quality-left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.quality-left-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background-color: var(--primary-color, #0c1117);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.quality-left-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    width: 20px;
    height: 100%;
    background-color: var(--accent-color);
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.quality-content-inner {
    padding: 30px 40px 30px 60px !important;
}

.quality-header h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    color: #0c1117 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
}

.gold-text-heading {
    color: var(--accent-color) !important;
}

.quality-divider {
    display: flex;
    align-items: center;
    margin-bottom: 15px !important;
    width: 50%;
}

.quality-divider .line {
    height: 2px;
    background-color: var(--accent-color);
    flex-grow: 1;
}

.quality-divider .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin: 0 8px;
}

.quality-header p {
    font-size: 14px !important;
    color: #444 !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    max-width: 95%;
}

/* Commitments Box */
.quality-commitments-wrapper {
    background-color: #fff;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
}

.border-right-custom {
    border-right: 1px solid rgba(186, 151, 49, 0.3) !important;
}

.quality-card {
    padding: 20px !important;
    display: flex;
}

.quality-icon {
    width: 45px !important;
    height: 45px !important;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 22px !important;
    margin-right: 15px !important;
    flex-shrink: 0;
    border: 2px solid #fff;
    outline: 2px solid var(--accent-color);
}

.quality-card-content h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.quality-card-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.quality-card-content ul li {
    font-size: 12px !important;
    color: #333 !important;
    margin-bottom: 6px !important;
    position: relative;
    padding-left: 12px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.quality-card-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 4px;
    background-color: #333;
    border-radius: 50%;
}

/* Right Panel Floating Box */
.quality-right-col {
    z-index: 3;
    padding: 0 !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-right-panel {
    width: 100%;
}

@media (min-width: 992px) {
    .quality-right-col {
        justify-content: flex-start !important;
    }
}

.floating-shield-card {
    background-color: #0c1117 !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 8px !important;
    padding: 25px 20px !important;
    margin-left: -30px !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
    max-width: 260px !important;
}

.shield-icon {
    text-align: center;
    margin-bottom: 20px !important;
}

.shield-icon i {
    font-size: 35px !important;
    color: var(--accent-color) !important;
}

.floating-shield-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.floating-shield-card ul li {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
}

.floating-shield-card ul li:last-child {
    margin-bottom: 0 !important;
}

.gold-text {
    color: var(--accent-color) !important;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .quality-content-inner {
        padding: 25px 35px 25px 50px !important;
    }

    .floating-shield-card {
        margin-left: 0 !important;
        max-width: 220px !important;
    }
}

@media (max-width: 991px) {
    .quality-bg-wrapper {
        min-height: auto !important;
    }

    .quality-container {
        position: relative !important;
    }

    .quality-bg-img {
        display: none !important;
    }

    .quality-left-col {
        clip-path: none !important;
        height: auto !important;
    }

    .quality-left-col::before,
    .quality-left-col::after {
        display: none !important;
    }

    .quality-content-inner {
        padding: 30px 20px !important;
    }

    .floating-shield-card {
        margin: 20px auto !important;
        max-width: 100% !important;
    }

    .quality-divider {
        width: 100% !important;
    }

    .quality-row {
        height: auto !important;
    }
}

@media (max-width: 767px) {
    .border-right-custom {
        border-right: none !important;
        border-bottom: 1px solid rgba(186, 151, 49, 0.3) !important;
    }

    .quality-header h2 {
        font-size: 20px !important;
    }

    .quality-card {
        padding: 15px !important;
        flex-direction: column !important;
    }

    .quality-icon {
        margin-bottom: 15px !important;
    }
}

/* Company Philosophy & Approach Adjustments */
.philosophy-desc {
    color: #fff !important;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px !important;
}

.our-approach .approach-item-content h3 {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    line-height: 1.3 !important;
}

/* ========================================= */
/* Key Quality Pillars Section               */
/* ========================================= */
.key-quality-pillars-section {
    padding: 40px 0 !important;
    background-color: #fbfbfb !important;
}

.quality-pillars-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px !important;
}

.quality-pillars-header .line {
    height: 2px !important;
    background-color: var(--accent-color) !important;
    width: 100px !important;
    position: relative;
}

.quality-pillars-header .line::after {
    content: '';
    position: absolute;
    width: 6px !important;
    height: 6px !important;
    background-color: var(--accent-color) !important;
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%);
}

.quality-pillars-header .line:first-child::after {
    right: 0 !important;
}

.quality-pillars-header .line:last-child::after {
    left: 0 !important;
}

.quality-pillars-header h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 20px !important;
    text-transform: uppercase !important;
}

.quality-pillars-box {
    background-color: #fffcf8 !important;
    border: 1px solid rgba(186, 151, 49, 0.4) !important;
    border-radius: 8px !important;
    padding: 25px 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03) !important;
}

.pillars-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 0 !important;
}

.pillar-item {
    text-align: center !important;
    padding: 0 10px !important;
    border-right: 1px solid rgba(186, 151, 49, 0.3) !important;
}

.pillar-item:last-child {
    border-right: none !important;
}

.pillar-icon {
    width: 50px !important;
    height: 50px !important;
    background-color: #0c1117 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 15px !important;
    color: #fff !important;
    font-size: 20px !important;
    border: 2px solid #fff !important;
    outline: 2px solid var(--accent-color) !important;
}

.pillar-item h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    line-height: 1.3 !important;
}

.pillar-item p {
    font-size: 11px !important;
    color: #444 !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    font-weight: 600 !important;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px 0 !important;
    }

    .pillar-item:nth-child(4) {
        border-right: none !important;
    }
}

@media (max-width: 767px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .pillar-item:nth-child(even) {
        border-right: none !important;
    }

    .quality-pillars-header .line {
        width: 40px !important;
    }

    .quality-pillars-header h2 {
        font-size: 16px !important;
        margin: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px 0 !important;
    }

    .pillar-item {
        border-bottom: 1px solid rgba(186, 151, 49, 0.3) !important;
        padding: 15px 5px !important;
    }

    .pillar-item:nth-child(even) {
        border-right: none !important;
    }

    .pillar-item:nth-last-child(-n+2) {
        border-bottom: none !important;
    }

    .pillar-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
        margin: 0 auto 10px !important;
    }

    .pillar-item h3 {
        font-size: 11px !important;
        margin-bottom: 5px !important;
    }

    .pillar-item p {
        font-size: 10px !important;
    }
}

/* ========================================= */
/* Process Accordion Adjustments             */
/* ========================================= */
.process-accordion .accordion-item {
    margin-bottom: 15px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 6px !important;
    background-color: #fff !important;
    overflow: hidden !important;
}

.process-accordion .accordion-button {
    padding: 18px 25px !important;
    box-shadow: none !important;
    font-weight: 600 !important;
}

.process-accordion .accordion-button:focus {
    box-shadow: none !important;
}

.process-accordion .accordion-body {
    padding: 0 25px 20px 25px !important;
}

.process-accordion .step-number {
    font-weight: 700 !important;
    margin-right: 15px !important;
    color: var(--accent-color) !important;
}

/* Accordion Mobile Adjustments */
@media (max-width: 767px) {
    .process-accordion .accordion-item {
        margin-bottom: 8px !important;
    }

    .process-accordion .accordion-button {
        padding: 12px 15px !important;
        font-size: 15px !important;
    }

    .process-accordion .step-number {
        margin-right: 10px !important;
    }

    .process-accordion .accordion-body {
        padding: 0 15px 15px 15px !important;
    }
}

/* ========================================= */
/* Hero Section Spacing Fix                  */
/* ========================================= */
.hero-content .section-title p.text-muted {
    margin-bottom: 5px !important;
}

.hero-content .section-title h1.text-anime-style-3 {
    margin-top: 0 !important;
}

/* ========================================= */
/* Our Approach Section                      */
/* ========================================= */
.our-approach-section {
    background: #fff;
    overflow: hidden;
}

.approach-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 700px;
}

.approach-left {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 50px 0 60px 55px !important;
    background: #fff;
    position: relative;
    z-index: 2;
}

.approach-logo img {
    max-width: 90px !important;
    margin-bottom: 10px;
}

.approach-tagline {
    font-size: 10px !important;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 30px !important;
}

.approach-header h2 {
    font-size: 36px !important;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin-bottom: 15px !important;
}

.approach-header .gold-text {
    color: var(--accent-color);
}

.approach-intro {
    font-size: 14px !important;
    color: #555;
    margin-bottom: 25px !important;
    border-top: 2px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px !important;
    line-height: 1.6;
}

.approach-steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px !important;
}

.approach-step-item {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px !important;
}

.approach-step-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
}

.step-icon-left {
    width: 35px !important;
    height: 35px !important;
    background-color: #111;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 14px !important;
    margin-right: 15px !important;
    flex-shrink: 0;
}

.step-text-left h4 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 3px !important;
}

.step-text-left p {
    font-size: 13px !important;
    color: #666;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
}

.approach-right {
    flex: 0 0 55%;
    max-width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.approach-image {
    border-radius: 10px;
    width: 100%;
    height: 70% !important;
    object-fit: contain;
}

.approach-diagonal-overlay {
    position: absolute;
    top: -50px;
    left: -150px;
    width: 250px;
    height: 120%;
    background: #fff;
    transform: rotate(15deg);
    z-index: 1;
    border-right: 20px solid var(--accent-color);
}

.circular-flowchart-wrapper {
    position: relative;
    width: 450px !important;
    height: 450px !important;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px !important;
}

.flow-circle-track {
    position: absolute;
    width: 320px !important;
    height: 320px !important;
    border: 3px solid rgba(186, 151, 49, 0.7);
    border-radius: 50%;
    z-index: 1;
}

.center-text-box {
    position: relative;
    z-index: 2;
    text-align: center;
    background: transparent;
}

.center-text-box h3 {
    font-size: 18px !important;
    font-weight: 800;
    color: #111;
    margin: 0;
    line-height: 1.2;
}

.center-text-box .gold-text {
    color: var(--accent-color);
}

.flow-node {
    position: absolute;
    width: 90px !important;
    height: 90px !important;
    background: #fff;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.flow-node::after {
    content: '\f0da';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    color: var(--accent-color);
    font-size: 24px !important;
}

/* node-1: 12 o'clock */
.node-1 {
    top: 20px !important;
    left: 180px !important;
}

.node-1::after {
    top: 25px !important;
    right: -25px !important;
    transform: rotate(30deg) !important;
}

/* node-2: 2 o'clock */
.node-2 {
    top: 100px !important;
    left: 318px !important;
}

.node-2::after {
    bottom: -15px !important;
    right: 0px !important;
    transform: rotate(90deg) !important;
}

/* node-3: 4 o'clock */
.node-3 {
    top: 260px !important;
    left: 318px !important;
}

.node-3::after {
    bottom: -10px !important;
    left: -10px !important;
    transform: rotate(150deg) !important;
}

/* node-4: 6 o'clock */
.node-4 {
    top: 340px !important;
    left: 180px !important;
}

.node-4::after {
    top: 25px !important;
    left: -25px !important;
    transform: rotate(210deg) !important;
}

/* node-5: 8 o'clock */
.node-5 {
    top: 260px !important;
    left: 41px !important;
}

.node-5::after {
    top: -15px !important;
    left: 0px !important;
    transform: rotate(270deg) !important;
}

/* node-6: 10 o'clock */
.node-6 {
    top: 100px !important;
    left: 41px !important;
}

.node-6::after {
    top: -10px !important;
    right: -10px !important;
    transform: rotate(330deg) !important;
}

.node-num {
    font-size: 13px !important;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.node-icon {
    font-size: 20px !important;
    color: #111;
    margin: 5px 0;
    line-height: 1;
}

.node-title {
    font-size: 9px !important;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .approach-left {
        padding: 40px;
    }

    .circular-flowchart-wrapper {
        transform: scale(0.8);
    }
}

@media (max-width: 991px) {
    .approach-left {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 30px 20px !important;
    }

    .approach-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 10px !important;
    }

    .approach-diagonal-overlay {
        display: none;
    }

    .approach-image {
        height: auto !important;
        margin-top: -20px !important;
        margin-bottom: -15px !important;
    }

    .circular-flowchart-wrapper {
        transform: scale(0.7);
        margin: -60px auto !important;
    }
}

@media (max-width: 575px) {
    .circular-flowchart-wrapper {
        transform: scale(0.5);
        margin: -110px auto !important;
    }

    .approach-header h2 {
        font-size: 26px !important;
    }

    .approach-image {
        margin-top: -25px !important;
        margin-bottom: -20px !important;
        max-width: 90% !important;
    }
}

/* ========================================= */
/* Feature Banner Section                    */
/* ========================================= */
.feature-banner-section {
    background: #f8f8f8;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-banner-container {
    display: flex;
    flex-wrap: nowrap;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.feature-banner-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 40px 20px 150px;
    position: relative;
    z-index: 2;
}

.feature-banner-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/homepage/background.png') left bottom/contain no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.banner-feature-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.banner-icon {
    width: 40px;
    height: 40px;
    background-color: #111;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 16px;
    margin-right: 15px;
    flex-shrink: 0;
}

.banner-text h4 {
    font-size: 12px !important;
    font-weight: 800 !important;
    color: #111 !important;
    margin-bottom: 3px !important;
    text-transform: uppercase;
}

.banner-text p {
    font-size: 10px !important;
    color: #666 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.banner-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(186, 151, 49, 0.4);
}

.feature-banner-right {
    flex: 0 0 350px;
    max-width: 350px;
    background-color: #111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    z-index: 1;
}

.feature-banner-right::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -50px;
    bottom: -50px;
    width: 60px;
    background-color: #111;
    transform: rotate(-15deg);
    border-left: 3px solid var(--accent-color);
    z-index: -1;
}

.banner-right-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-handshake-icon {
    color: var(--accent-color);
    font-size: 40px;
    margin-right: 20px;
}

.banner-right-text h3 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: var(--accent-color) !important;
    line-height: 1.2 !important;
    margin: 0 0 8px 0 !important;
}

.banner-underline {
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1199px) {
    .feature-banner-left {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-feature-item {
        padding: 0 10px;
    }
}

@media (max-width: 991px) {
    .feature-banner-container {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .feature-banner-left {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 25px;
        padding: 40px 20px;
    }

    .banner-separator {
        display: none;
    }

    .feature-banner-right {
        flex: auto;
        max-width: 100%;
        padding: 30px 20px !important;
    }

    .feature-banner-right::before {
        display: none;
    }

    .banner-right-text h3 .desktop-br {
        display: none !important;
    }
}

/* ========================================= */
/* Mobile View for Our Approach Section      */
/* ========================================= */
@media (max-width: 767px) {
    .approach-steps-list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
    }

    .approach-step-item {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 20px 10px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
    }

    /* Vertical line between the 2 items in a row */
    .approach-step-item:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, 0.15) !important;
    }

    /* Remove bottom borders for the last row (assuming 6 items) */
    .approach-step-item:nth-last-child(1),
    .approach-step-item:nth-last-child(2) {
        border-bottom: none !important;
    }

    .step-icon-left {
        margin-right: 0 !important;
        margin-bottom: 12px !important;
    }

    /* Adjust text size for small columns */
    .step-text-left h4 {
        font-size: 12px !important;
        line-height: 1.3 !important;
    }

    .step-text-left p {
        font-size: 10px !important;
        line-height: 1.4 !important;
    }
}

/* ========================================= */
/* 5-Column Feature Banner                   */
/* ========================================= */
.five-col-feature-section {
    background-color: #f6f5f3;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.five-col-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5px;
}

.five-col-item {
    flex: 1;
    text-align: center;
    padding: 15px 15px;
    border-right: 1px solid rgba(186, 151, 49, 0.3);
    box-sizing: border-box;
}

.five-col-item:last-child,
.five-col-item.border-0 {
    border-right: none !important;
}

.five-col-icon {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.five-col-item h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #111;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.five-col-item p {
    font-size: 13px !important;
    line-height: 1.4;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
    .five-col-item {
        padding: 20px 15px;
    }
}

@media (max-width: 991px) {
    .five-col-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(186, 151, 49, 0.3);
    }

    .five-col-item:nth-child(odd) {
        border-right: 1px solid rgba(186, 151, 49, 0.3);
    }

    .five-col-item:last-child {
        border-bottom: none;
    }

    .five-col-item h4 {
        font-size: 12px !important
    }
}

@media (max-width: 575px) {
    .five-col-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 5px;
    }

    .five-col-item:nth-child(odd) {
        border-right: 1px solid rgba(186, 151, 49, 0.3) !important;
    }

    .five-col-item:last-child {
        border-bottom: none;
    }
}

/* Dark Process Banner */
.dark-process-banner {
    padding: 0;
    margin: 0 !important;
    background-color: transparent;
    width: 100%;
    overflow: hidden;
}

.dp-banner-bg {
    background-color: #060b13;
    border-bottom: 4px solid #ba9731;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0 100%);
    padding: 20px 0;
    width: 100%;
}

.dp-col {
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(186, 151, 49, 0.3);
    padding: 20px 30px;
}

.dp-col.border-0 {
    border-right: none;
}

.dp-icon {
    font-size: 45px;
    color: #ba9731;
    margin-right: 20px;
    flex-shrink: 0;
}

.dp-text {
    display: flex;
    flex-direction: column;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.dp-text-white {
    color: #ffffff;
}

.dp-text-gold {
    color: #ba9731;
}

@media (max-width: 1199px) {
    .dp-col {
        padding: 20px 15px;
    }

    .dp-text {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .dp-banner-bg {
        clip-path: none;
        padding: 20px 0;
    }

    .dp-col {
        border-right: none;
        border-bottom: 1px solid rgba(186, 151, 49, 0.3);
        padding: 25px 20px;
    }

    .dp-col.border-0 {
        border-bottom: none;
    }
}

/* What Sets Us Apart Section */
.what-sets-us-apart {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.custom-apart-title h2 {
    font-size: 20px !important;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.custom-apart-title h2::before,
.custom-apart-title h2::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #d4af37;
    margin: 0 15px;
}

.custom-apart-row {
    text-align: center;
    margin-top: 30px;
}

.custom-apart-col {
    border-right: 1px solid #e0c870;
    padding: 0 15px;
}

.custom-apart-col.last-col {
    border-right: none;
}

.apart-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apart-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background-color: transparent;
}

.apart-icon i {
    font-size: 24px;
    color: #b08d1d;
}

.apart-item h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #000 !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.apart-item p {
    font-size: 14px !important;
    color: #777;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .custom-apart-col {
        border-right: none;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .custom-apart-col.last-col {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .custom-apart-title h2 {
        font-size: 15px !important;
        padding-top: 30px;
    }

    .custom-apart-title h2::before,
    .custom-apart-title h2::after {
        margin: 0 5px;
    }

    .apart-item h3 {
        font-size: 13px !important;
    }

    .apart-item p {
        font-size: 11px !important;
    }

    .custom-apart-col {
        padding: 0;
    }

    .apart-icon {
        width: 40px;
        height: 40px;
    }

    .apart-icon i {
        font-size: 15px;
    }
}

/* Blog Card Custom Styles */
.blog-card-custom {
    background-color: #f4f5f7 !important;
}

.blog-card-title-custom {
    font-size: 20px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    letter-spacing: -0.3px !important;
    color: #111 !important;
    margin-bottom: 15px;
}

.blog-card-btn {
    background-color: #111 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 8px 22px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: 0.3s ease !important;
}

.blog-card-btn:hover {
    background-color: #333 !important;
    color: #fff !important;
}

/* Footer Custom Inline Replacements */
.main-footer .footer-desc-custom {
    opacity: 0.8;
    font-size: 16px !important;
    font-weight: 300;
}

.main-footer .footer-title-custom {
    letter-spacing: 0.5px;
}

.main-footer .footer-link-custom {
    font-weight: 300;
}

.main-footer .footer-icon-custom {
    width: 18px;
    margin-top: 4px;
}

.main-footer .footer-contact-text {
    line-height: 1.5;
    font-weight: 300;
}

.main-footer .footer-contact-email {
    word-break: break-all;
    font-weight: 300;
}

.main-footer .footer-copyright-custom {
    font-weight: 300;
    font-size: 14px;
}

/* ========================================= */
/* Global Mobile Section Spacing Override    */
/* ========================================= */
@media (max-width: 767px) {

    .about-us,
    .our-numbers,
    .our-services,
    .our-services-gold,
    .our-services-silver,
    .sticky-projects-section,
    .our-features,
    .our-story,
    .industries-serve,
    .construction-process,
    .equipment-tech,
    .trusted-clients,
    .cta-section,
    .our-testimonials,
    .our-blog,
    .our-faqs,
    .why-choose-us,
    .why-choose-us-gold,
    .extracted-style-28 {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }

    .extracted-style-25,
    .services-nav-buttons {
        margin-top: 10px !important;
    }

    .why-choose-us .section-title,
    .why-choose-us-gold .section-title {
        margin-bottom: 10px !important;
    }

    .extracted-style-26 {
        width: 40px !important;
        height: 40px !important;
    }

    .process-icon-wrapper,
    .process-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 20px !important;
    }

    .process-icon i {
        font-size: 26px !important;
    }

    .process-step {
        padding: 0 5px !important;
        margin-bottom: 25px !important;
    }

    .process-step-title {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        min-height: 36px !important;
    }

    .process-step-desc {
        font-size: 10px !important;
    }
}

@media (max-width: 767px) {
    .process-number {
        width: 20px !important;
        height: 20px !important;
        font-size: 8px;
    }

    .cta-section h2+p {
        font-size: 12px !important;

    }

    .our-testimonials .testimonial-card {
        padding: 10px !important;
    }

    .our-testimonials {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .extracted-style-75 {
        padding: 25px 0;
    }

    .cta-section .section-title h2 {
        font-size: 20px !important;
        padding-bottom: 10px !important;
        font-weight: 500 !important;
    }

    .btn-default {
        font-size: 10px !important;
        padding: 12px 33px 15px 15px !important;
    }

    .kb-content p {
        font-size: 11px !important;
    }

    /* Reduce footer spacing on mobile view across all pages */
    .main-footer .footer-box [class*="col-"] {
        margin-bottom: 15px !important;
    }

    .main-footer .col-lg-12.mt-5.pt-4 {
        margin-top: 10px !important;
        padding-top: 10px !important;
        margin-bottom: 5px !important;
    }

    .main-footer .footer-box {
        padding-bottom: 10px !important;
    }

    .main-footer .footer-copyright {
        margin-top: 5px !important;
        padding: 5px 0 !important;
    }

    .main-footer {
        background: #000000 !important;
        background-image: none !important;
    }

    .main-footer::before,
    .main-footer::after {
        display: none !important;
    }
}

/* ========================================= */
/* Get In Touch Popup Modal Styling          */
/* ========================================= */
.custom-popup-modal {
    background: #ffffff !important;
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.custom-popup-close {
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 12px;
    margin: 15px 15px 0 0;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.custom-popup-close:hover {
    background-color: #e2e8f0;
    opacity: 1;
    transform: rotate(90deg);
}

.popup-title {
    color: #000000;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.popup-subtitle {
    font-size: 14px;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.5;
}

.popup-label {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.popup-input {
    background: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #0f172a !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    width: 100%;
}

.popup-input:focus {
    background: #ffffff !important;
    border-color: #c5a059 !important;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15) !important;
}

.popup-select {
    cursor: pointer;
}

.popup-submit-btn {
    width: 100%;
    padding: 14px 28px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.popup-submit-btn:hover {
    background: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3) !important;
}

@media (max-width: 767px) {
    .custom-popup-modal {
        border-radius: 16px !important;
    }

    .popup-title {
        font-size: 20px !important;
    }

    .popup-subtitle {
        font-size: 12px;
    }

    .popup-label {
        font-size: 11px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .popup-input {
        font-size: 12px !important;
        padding: 8px 10px !important;
    }

    .popup-submit-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}

/* ======================================================= */
/* Footer Copyright Fix — ensure text is always visible    */
/* ======================================================= */
.footer-copyright-text p,
.footer-copyright .mb-0,
.footer-copyright p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.main-footer .footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 0 !important;
    margin-top: 20px !important;
    display: flex !important;
    align-items: center !important;
}

/* ======================================================= */
/* Blog Detail Page — Sidebar & Content Styles             */
/* ======================================================= */

/* Blog Detail Layout */
.blog-detail-section {
    padding: 70px 0;
    background: #f9f9f9;
}

/* Blog Hero Image */
.blog-detail-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Meta */
.blog-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
}

.blog-meta-strip span {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-strip .badge-cat {
    background: #c5a059;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Blog Main Title */
.blog-detail-title {
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #111;
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Blog Section Headings */
.blog-section-heading {
    font-size: 25px !important;
    font-weight: 600 !important;
    color: #111;
    margin: 36px 0 14px;
    padding-left: 16px;
    border-left: 4px solid #c5a059;
}

/* Blog Body Text */
.blog-body-text {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 20px;
}

/* Blog Section Image */
.blog-section-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

/* Blog Blockquote */
.blog-quote {
    background: linear-gradient(135deg, #fff8ee, #fff);
    border-left: 5px solid #c5a059;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 30px 0;
    font-size: 17px;
    font-style: italic;
    color: #333;
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.1);
}

.blog-quote cite {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: #c5a059;
    font-weight: 600;
    margin-top: 10px;
}

/* Key Points List */
.blog-key-points {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.blog-key-points li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.blog-key-points li:last-child {
    border-bottom: none;
}

.blog-key-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 10px;
    height: 10px;
    background: #c5a059;
    border-radius: 50%;
}

/* Blog Tags Footer */
.blog-tags-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #eee;
    align-items: center;
}

.blog-tags-footer .tag-label {
    font-weight: 700;
    color: #111;
    font-size: 14px;
    margin-right: 4px;
}

.blog-tags-footer a {
    background: #f0f0f0;
    color: #555;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.blog-tags-footer a:hover {
    background: #c5a059;
    color: #fff;
}

/* ======================================================= */
/* Blog Sidebar Widgets                                    */
/* ======================================================= */

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-widget-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #c5a059;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Widget */
.sidebar-search-form {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #e0e0e0;
    transition: border-color 0.2s;
}

.sidebar-search-form:focus-within {
    border-color: #c5a059;
}

.sidebar-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.sidebar-search-btn {
    background: #c5a059;
    border: none;
    color: #fff;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s;
}

.sidebar-search-btn:hover {
    background: #a8873e;
}

/* Categories Widget */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    border-bottom: 1px solid #f5f5f5;
}

.sidebar-category-list li:last-child {
    border-bottom: none;
}

.sidebar-category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.sidebar-category-list li a:hover {
    color: #c5a059;
    padding-left: 6px;
}

.sidebar-category-list li a .cat-count {
    background: #f5f0e8;
    color: #c5a059;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 28px;
    text-align: center;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: flex-start;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 72px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-post-info h6 {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #222;
    line-height: 1.4;
    margin-bottom: 5px;
    transition: color 0.2s;
}

.recent-post-info h6 a {
    color: inherit;
    text-decoration: none;
}

.recent-post-info h6 a:hover {
    color: #c5a059;
}

.recent-post-date {
    font-size: 11px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Tags Widget */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-tags a {
    display: inline-block;
    padding: 6px 14px;
    background: #f5f5f5;
    color: #555;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.sidebar-tags a:hover {
    background: #c5a059;
    color: #fff;
    border-color: #c5a059;
    transform: translateY(-1px);
}

/* CTA Widget */
.sidebar-cta-widget {
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-widget::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(197, 160, 89, 0.12);
    border-radius: 50%;
}

.sidebar-cta-widget h4 {
    color: #fff !important;
    font-size: 25px !important;
    font-weight: 600 !important;
    margin-bottom: 10px;
    position: relative;
}

.sidebar-cta-widget p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px !important;
    margin-bottom: 18px;
    position: relative;
}

.sidebar-cta-btn {
    display: inline-block;
    background: #c5a059;
    color: #fff;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
}

.sidebar-cta-btn:hover {
    background: #a8873e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

/* Mobile responsive for blog layout */
@media (max-width: 991px) {
    .blog-detail-hero-img {
        height: 300px;
    }

    .blog-detail-title {
        font-size: 1.55rem;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .blog-detail-section {
        padding: 40px 0;
    }

    .blog-detail-hero-img {
        height: 220px;
        border-radius: 10px;
    }

    .blog-detail-title {
        font-size: 1.3rem;
    }

    .blog-section-img {
        height: 200px;
    }
}

/* ======================================================= */
/* Services Slider — Controls Row (Pagination + Nav Arrows)*/
/* ======================================================= */
.services-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Swiper Pagination Bullets — gold theme */
.services-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
}

.services-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(197, 160, 89, 0.35);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.services-pagination .swiper-pagination-bullet-active {
    background: #c5a059;
    width: 28px;
    border-radius: 5px;
}

/* Nav buttons hover polish */
.services-prev.extracted-style-26,
.services-next.extracted-style-26 {
    transition: background 0.25s ease, transform 0.2s ease;
}

.services-prev.extracted-style-26:hover,
.services-next.extracted-style-26:hover {
    background: #c5a059;
    transform: scale(1.1);
}

/* Disabled state for nav buttons */
.services-prev.swiper-button-disabled,
.services-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

@media (max-width: 575px) {
    .services-slider-controls {
        flex-direction: column;
        gap: 14px;
    }
}

/* Responsive font size increase for We Build Confidence slogan in mobile view */
@media (max-width: 991px) {
    .confidence-text {
        font-size: 38px !important;
        line-height: 1.25 !important;
        display: block !important;
        margin-top: 6px !important;
    }
}

@media (max-width: 767px) {
    .confidence-text {
        font-size: 23px !important;
        line-height: 1.25 !important;
        display: block !important;
        margin-top: 4px !important;
        font-weight: 600;
    }
}

/* Reduce spacing in Our Services section on mobile and tablet view */
@media (max-width: 991px) {

    .our-services .row.mb-5,
    .our-services-gold .row.mb-5,
    .our-services-silver .row.mb-5 {
        margin-bottom: 15px !important;
    }

    .our-services .section-title,
    .our-services-gold .section-title,
    .our-services-silver .section-title {
        margin-bottom: 5px !important;
    }

    .our-services .text-md-end.mt-4,
    .our-services-gold .text-md-end.mt-4,
    .our-services-silver .text-md-end.mt-4 {
        margin-top: 5px !important;
    }

    .dark-section .section-title p {
        font-size: 13px !important;
    }
}

@media (max-width: 767px) {

    .our-services .row.mb-5,
    .our-services-gold .row.mb-5,
    .our-services-silver .row.mb-5 {
        margin-bottom: 10px !important;
    }

    .our-services .section-title,
    .our-services-gold .section-title,
    .our-services-silver .section-title {
        margin-bottom: 0px !important;
    }

    .our-services .text-md-end.mt-4,
    .our-services-gold .text-md-end.mt-4,
    .our-services-silver .text-md-end.mt-4 {
        margin-top: 5px !important;
    }

    .dark-section .section-title p {
        font-size: 13px !important;
    }

    .feature-banner-right {
        padding: 25px 15px !important;
    }

    .banner-handshake-icon {
        font-size: 30px !important;
        margin-right: 12px !important;
    }

    .banner-right-text h3 .desktop-br {
        display: none !important;
    }
}

/* Video Testimonials Section Styles */
.video-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-testimonial-poster {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.video-testimonial-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
    transition: background 0.3s ease;
    z-index: 1;
}

.video-testimonial-card:hover .video-testimonial-poster::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.video-testimonial-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-testimonial-card:hover .video-testimonial-poster img {
    transform: scale(1.08);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-btn {
    width: 64px;
    height: 64px;
    background: var(--accent-color, #c59236);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-left: 4px;
    box-shadow: 0 0 0 8px rgba(197, 146, 54, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-play-btn:hover {
    background: #ffffff;
    color: var(--accent-color, #c59236) !important;
    transform: scale(1.12);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.45);
}

.video-badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(12, 35, 64, 0.88);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.video-testimonial-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-testimonial-stars {
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 12px;
}

.video-testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.video-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #edf2f7;
}

.video-author-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color, #0c2340);
    color: var(--accent-color, #c59236);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.video-author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 2px 0;
}

.video-author-info span {
    font-size: 13px;
    color: #718096;
}

/* Flip Card CSS for Industry Cards */
.industry-flip-card {
    background-color: transparent;
    perspective: 1000px;
    height: 145px;
    margin-bottom: 20px;
}

.industry-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .industry-flip-card:hover .industry-flip-card-inner {
        transform: rotateY(180deg);
    }

    .industry-card-info-mobile {
        display: none !important;
    }
}

.industry-flip-card-front,
.industry-flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    border: 1px solid #c89b51;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.industry-flip-card-front {
    background-color: #ffffff;
    z-index: 2;
    transform: rotateY(0deg);
}

.industry-flip-card-back {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    transform: rotateY(180deg);
    border-color: #c89b51;
    padding: 12px 10px;
    text-align: center;
}

.industry-flip-card-back h4 {
    color: #c89b51 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin: 0 0 6px 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-flip-card-back p {
    color: #e2e8f0 !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
}

/* Mobile responsive styles: flat layout without flip */
@media (max-width: 767px) {
    .industry-flip-card {
        perspective: none !important;
        height: 100% !important;
        min-height: 0 !important;
        margin-bottom: 0 !important;
    }

    .industry-flip-card-inner {
        transform: none !important;
        transform-style: flat !important;
        transition: none !important;
        background: #ffffff !important;
        border: 1px solid #c89b51 !important;
        border-radius: 12px !important;
        padding: 12px 8px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        height: 100% !important;
    }

    .industry-flip-card-front {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        transform: none !important;
    }

    .industry-flip-card-back {
        display: none !important;
    }

    .industry-card-info-mobile {
        display: block !important;
        margin-top: 6px !important;
        font-size: 11px !important;
        color: #64748b !important;
        line-height: 1.35 !important;
        font-weight: 400 !important;
    }
}

@media (min-width: 992px) {
    .col-lg-custom-5 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
        width: 20% !important;
    }
}

/* Concept to Completion - Project Execution Dark Section Styling */
.concept-completion-dark {
    background-color: #121319 !important;
    padding: 80px 0 !important;
}

/* Heading & Subheading Color Fixes */
.concept-completion-dark h3,
.concept-completion-dark h3 *,
.concept-completion-dark .service-style-9d2727,
.concept-completion-dark .service-style-9d2727 * {
    color: #c89b51 !important;
    -webkit-text-fill-color: #c89b51 !important;
}

.concept-completion-dark h2,
.concept-completion-dark h2 *,
.concept-completion-dark .service-style-f61233,
.concept-completion-dark .service-style-f61233 * {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* Margin / Padding after Paragraph */
.concept-completion-dark .service-style-70a0eb {
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 20px !important;
}

.concept-completion-dark .section-title {
    margin-bottom: 0 !important;
}

.concept-completion-dark .service-style-edf98d,
.concept-completion-dark .service-style-43ced2 {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 14px !important;
    padding: 24px 22px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.concept-completion-dark .service-style-edf98d:hover,
.concept-completion-dark .service-style-43ced2:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(200, 155, 81, 0.4) !important;
    background: rgba(200, 155, 81, 0.06) !important;
}

.concept-completion-dark .service-style-088fd7 {
    background: #c89b51 !important;
    border-radius: 8px !important;
}

.concept-completion-dark .service-style-cf88d6 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

.concept-completion-dark .service-style-0644eb {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
}

/* Image Wrapper & Top Framing Fix */
.concept-completion-dark .service-style-d2981e {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 480px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
}

.concept-completion-dark .service-style-7d1fae {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 16px !important;
}

@media (max-width: 991px) {
    .concept-completion-dark {
        padding: 50px 0 !important;
    }

    .concept-completion-dark .section-title {
        margin-bottom: 30px !important;
    }

    .concept-completion-dark .service-style-d2981e {
        min-height: 320px !important;
        height: 320px !important;
        margin: 20px 0 !important;
    }
}

.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Gradient Overlay for better text readability */
.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-swiper .hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 70px;
    /* Ensures proper spacing */
}

/* Typography adjustments to force white color */
.hero-swiper .text-muted {
    color: #d1d1d1 !important;
}

/* Target all child elements including those generated by SplitText */
.hero-swiper .hero-prof,
.hero-swiper .hero-title-text,
.hero-swiper .hero-sub,
.hero-swiper .hero-prof *,
.hero-swiper .hero-title-text *,
.hero-swiper .hero-sub * {
    color: #ffffff !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.4 !important;
    /* Fix overlapping */
}

.hero-swiper .hero-title-accent,
.hero-swiper .hero-title-accent * {
    color: #BA9731 !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.4 !important;
    /* Fix overlapping */
}

/* Swiper Buttons - Circular, blur bg, small */
.hero-slider-wrapper .swiper-button-next,
.hero-slider-wrapper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #BA9731;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.hero-slider-wrapper .swiper-button-next:hover,
.hero-slider-wrapper .swiper-button-prev:hover {
    background: #BA9731;
    color: white;
}

.hero-slider-wrapper .swiper-button-next::after,
.hero-slider-wrapper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Mobile responsiveness for the slider buttons and padding */
@media (max-width: 768px) {

    .hero-slider-wrapper .swiper-button-next,
    .hero-slider-wrapper .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
        top: auto !important;
        bottom: 220px !important;
    }

    .hero-slider-wrapper .swiper-button-next::after,
    .hero-slider-wrapper .swiper-button-prev::after {
        font-size: 12px !important;
    }

    .hero-swiper .hero-content {
        padding: 120px 0 !important;
        text-align: left !important;
    }

    .hero-swiper .hero-prof,
    .hero-swiper .hero-prof * {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .hero-swiper .hero-title-text,
    .hero-swiper .hero-title-text * {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .hero-swiper .hero-title-accent,
    .hero-swiper .hero-title-accent * {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .hero-swiper .hero-sub,
    .hero-swiper .hero-sub * {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
}