html {
    scroll-behavior: smooth;
}

:root {
    --color-main: #4e7b39;
    --color-primary: #4e7b39;
    --color-secondary: #6fa85a;

    --color-blue2: #3b5e2b;
    --color-blue4: #446d32;
    --color-blue5: #5f9a46;
    --color-blue6: #6fa85a;
    --color-blue7: #8fcf77;
    --color-blue8: #2a441f;

    --color-lightBlue: #b7e2a5;
    --color-darkBlue: #1f2a1c;
    --color-darkBlue2: #2f4026;

    --color-orange1: #3b5e2b;
    --color-orange2: #446d32;
    --color-orange3: #5f9a46;
    --color-orange4: #2a441f;

    --color-red1: #cc2131;
    --color-red2: #ef1552;

    --color-green: #4e7b39;
    --color-yellowGreen: #cef54b;

    --color-gray: #eef4f0;
    --color-gray2: #f3f6f4;

    --color-main-grad: linear-gradient(to right,
            #3b5e2b 0%,
            #6fa85a 100%);
}

.section-padding {
    padding: 50px 0px;
}

/* Home Page CSS Starts FROM HERE */

header.style-2 .content h1 {
    letter-spacing: 24px;
    padding-left: 0px;
}

.logo img {
    width: 150px;
}

.section-head.style-4 h5 {
    color: var(--color-primary);
}

header.style-7 .info h1 .text-grad {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(#2a441f),
            color-stop(30%, #3b5e2b),
            color-stop(30%, #3b5e2b),
            color-stop(73%, #5f9a46),
            to(#8fcf77));

    background-image: -o-linear-gradient(left,
            #2a441f 0%,
            #3b5e2b 30%,
            #3b5e2b 30%,
            #5f9a46 73%,
            #8fcf77 100%);

    background-image: linear-gradient(to right,
            #2a441f 0%,
            #3b5e2b 30%,
            #3b5e2b 30%,
            #5f9a46 73%,
            #8fcf77 100%);
}

header.style-7 .sponsers .sponsers-content a {
    margin-inline-end: 33px;
}

.services.style-8 .swiper-container {
    overflow-y: auto;
}

.services.style-8 .service-card.style-8 {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: white;
}

.services.style-8 .service-card.style-8 {
    padding: 20px;
}

.services.style-8 .service-card.style-8 .info a {
    margin-top: 25px;
}

.section-head.style-4 h2 span {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--color-blue2)),
            color-stop(30%, var(--color-blue4)),
            color-stop(30%, var(--color-blue5)),
            color-stop(73%, var(--color-blue6)),
            to(var(--color-blue7)));

    background-image: -o-linear-gradient(left,
            var(--color-blue5) 0%,
            var(--color-blue5) 30%,
            var(--color-blue5) 30%,
            var(--color-blue6) 73%,
            var(--color-blue7) 100%);

    background-image: linear-gradient(to right,
            var(--color-blue5) 0%,
            var(--color-blue5) 30%,
            var(--color-blue5) 30%,
            var(--color-blue6) 73%,
            var(--color-blue7) 100%);
}

a:hover {
    color: var(--color-main);
}

/* Floating up and down animation */
@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}

/* ====== Our Expertise Section ====== */
.expertise-section {
    padding: 50px 0;
    background-color: #f0eff5;
}

.expertise-section .section-head h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}


/* Expertise Cards */
.expertise-card {
    background: #0d0d0d;
    border-radius: 16px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(78, 123, 57, 0.1) 100%);
    border-radius: 0 0 16px 0;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.expertise-card .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}

.expertise-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.expertise-card .card-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.expertise-card h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.expertise-card .card-btn {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.expertise-card .card-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Middle card accent (Staff Augmentation style) */
.expertise-card.accent-card {
    border: 1px solid rgba(78, 123, 57, 0.3);
}

.expertise-card.accent-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

/* Third card with corner graphic */
.expertise-card.graphic-card::before {
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="100" x2="100" y2="0" stroke="%23333" stroke-width="0.5"/><line x1="20" y1="100" x2="100" y2="20" stroke="%23333" stroke-width="0.5"/><line x1="40" y1="100" x2="100" y2="40" stroke="%23333" stroke-width="0.5"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

/* Dots decoration for first card */
.expertise-card .dots-decoration {
    position: absolute;
    bottom: 20px;
    left: 30px;
    display: grid;
    grid-template-columns: repeat(6, 6px);
    gap: 5px;
}

.expertise-card .dots-decoration span {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 991px) {
    .expertise-section {
        padding: 60px 0;
    }

    .expertise-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .expertise-section .section-head h2 {
        font-size: 1.8rem;
    }
}

.section-head.style-16 .sub-title {
    background-color: #5f9a46;
    color: #fff;
}

.features.style-16 .tags .item>div.light {
    background-color: #5f9a46;
    color: white;
}

.services.style-8 .service-card.style-8 .info h5 {
    font-weight: 500;
}

.service-card .icon img {
    width: 50px;
}

.services.section-padding {
    padding: 50px 0px;
}

.services .section-head {
    margin-bottom: 50px !important;
}

/*
#preloader:after,
#preloader:before {
    content: "";
    position: fixed;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(to right,
            var(--color-blue8),
            var(--color-blue5),
            var(--color-blue7));
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#loading-content:before,
#loading-content:after {
    border-top-color: #fff;
    border-bottom-color: #fff;
}

#loading-content {
    border-top-color: #fff;
    border-bottom-color: #fff;
}
*/

.solutions.style-16 .content-card {
    background: linear-gradient(180deg,
            rgba(78, 123, 57, 0.08) 0%,
            rgba(111, 168, 90, 0.05) 100%);
    padding: 30px;
}

.features.style-16 .v-progress-wrapper .v-progress-card .v-progress-bar {
    height: 76%;
}

.features.style-16 {
    padding: 100px 0px 0;
}

.features.style-16 .v-progress-wrapper .v-progress-card:nth-of-type(2) .v-progress-bar,
.features.style-16 .v-progress-wrapper .v-progress-card .v-progress-bar {
    background-color: #f0eff5;
}

.bg-blue7 {
    background-color: var(--color-blue5) !important;
}

.projects.style-13::before {
    top: unset;
    background: linear-gradient(to bottom,
            var(--color-lightBlue),
            transparent);
}

.img-cover img {
    object-position: top left;
}

.bg-custom {
    background-color: var(--color-blue7);
}

.projects.style-13::before {
    content: none;
}

.projects.style-13 {
    padding: 50px 0px;
}

.butn.btn-icon-circle i,
.btn.btn-icon-circle i {
    right: -43px;
    bottom: -5px;
}

.why-chose-us-section {
    background-color: #f0eff5;
}

.why-chose-us-section .faq.style-3.style-4 .accordion-item .accordion-collapse {
    background-color: #ffffff;
}

.why-chose-us-section .faq.style-3.style-4 .accordion-item .accordion-button:not(.collapsed) {
    background-color: #ffffff;
}

.sub-title {
    position: relative;
    font-size: 14px;
    background-color: #5f9a46;
    color: #fff;
    padding: 7px 20px;
    border-radius: 6px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235f9a46'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.section-head.style-6 h2 span::before {
    content: none;
}

.projects.style-6 .content {
    background-color: #f0eff5;
    position: relative;
    padding: 50px 0;
    border-radius: 0px;
}

.project-card.style-6 .info {
    padding: 20px;
}

.chat-banner.style-7 {
    background-color: #4e7b39;
    padding-top: 0px;
}

.chat-banner.style-7 .info {
    padding-bottom: 0px;
}

footer.style-7 .info-logo .logo {
    width: 250px;
}

.info-logo img {
    width: 100%;
}

.w-210px {
    width: 210px;
}

.w-150px {
    width: 150px;
}

.w-100px {
    width: 100px;
}

.about.style-7 .top-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.about.style-7 .bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.chat-banner.about.style-7 {
    /* position: relative; */
    padding: 100px;
}

.br-10px {
    border-radius: 10px;
}

.navbar.style-7 .navbar-brand {
    width: 300px;
    padding-right: 10px;
}

.navbar.style-7 .navbar-brand img {
    width: 100%;
}


.dropdown-menu .dropdown-item {
    font-size: 15px;
}

.navbar.style-7 {
    padding: 5px 0;
}

.navbar.style-7 .navbar-nav .nav-item .nav-link {
    font-size: 16px;
}

.dropdown-item {
    position: relative;
}

.dropdown-item:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5 px;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    background-color: var(--color-blue5);
}

@media (max-width: 991px) {
    .solutions.style-16 .content-card .img {
        height: auto;
    }
}

@media screen and (max-width: 991px) {

    .top-navbar.style-7 .top_info,
    .top-navbar.style-7 .side_links {
        font-size: 12px;
    }
}

.butn.btn-icon-circle i,
.btn.btn-icon-circle i {
    position: static;
    height: 25px;
    width: 25px;
}

.butn.btn-icon-circle,
.btn.btn-icon-circle {
    padding-right: 0px;
    padding: 12px 20px;
}

.butn small,
.btn small {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
}

/* Home Page CSS Ends HERE */

/* Services Page CSS Starts FROM HERE */
.tc-innerHeader-st2 {
    padding: 200px 0;
    background: none;
}

@media screen and (max-width: 991px) {
    .tc-innerHeader-st2 {
        padding: 150px 0;
    }
}

.tc-features-st17 .feature-card {
    min-height: auto;
    height: auto;
}

.tc-features-st17 .feature-card .icon {
    border-radius: 10%;
    background-color: white;
}

.feature-card h2 {
    font-size: 45px;
}

.services-section {
    background-color: white;
}

.services-section .accordion-button {
    font-size: 25px !important;
    font-weight: 500 !important;
}

.services-section .accordion-body p {
    font-size: 18px;
    font-weight: 400;
}

.why-chose-us-section.services-section .faq.style-3.style-4 .accordion-item .accordion-collapse {
    background-color: transparent;
}

.why-chose-us-section.services-section .faq.style-3.style-4 .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
}

/* Sticky Sidebar for Services Section */
.services-section .info {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .services-section .info {
        position: relative;
        top: 0;
    }
}

/* Accordion Icon Styling */
.services-section .accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.services-section .accordion-button:not(.collapsed) .accordion-icon {
    transform: scale(1.1);
}

.services-section .accordion-body a {
    color: var(--color-blue5);
    transition: color 0.3s ease;
}

.services-section .accordion-body a:hover {
    color: var(--color-blue7);
}

.services-section .accordion-button::after,
.services-section .accordion-button:not(.collapsed)::after {
    background-image: none;
}

/* Accordion Hover Effects */
.services-section .accordion-button {
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.services-section .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(95, 154, 70, 0.08), transparent);
    transition: left 0.5s ease;
}

.services-section .accordion-button:hover::before {
    left: 100%;
}

.services-section .accordion-button:hover {
    background-color: rgba(95, 154, 70, 0.05);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(95, 154, 70, 0.1);
}

.services-section .accordion-button:hover .accordion-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(95, 154, 70, 0.3));
}

.services-section .accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.services-section .accordion-item:hover {
    box-shadow: 0 6px 20px rgba(95, 154, 70, 0.12);
}

/* Smooth Accordion Animation */
.services-section .accordion-collapse {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.services-section .accordion-body {
    animation: fadeSlideIn 0.4s ease forwards;
    opacity: 0;
}

.services-section .accordion-collapse.show .accordion-body {
    opacity: 1;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section .accordion-collapse.collapsing .accordion-body {
    opacity: 0;
}

/* Active/Expanded State */
.services-section .accordion-button:not(.collapsed) {
    color: var(--color-blue5);
    background-color: rgba(95, 154, 70, 0.08);
    box-shadow: inset 0 -2px 0 var(--color-blue5);
}

.services-section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(95, 154, 70, 0.15);
}

.pay-card-custom {
    padding: 25px 20px;
    color: #1a1a2e;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 108px;
}

.pay-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(95, 154, 70, 0.25);
    background: rgba(255, 255, 255, 1);
}

/* .pay-card-custom .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #5f9a46 0%, #6fa85a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
} */

.pay-card-custom .icon i {
    font-size: 24px;
    color: #000000;
}

.pay-card-custom:hover .icon {
    transform: scale(1.1) rotate(5deg);
    /* box-shadow: 0 4px 15px rgba(95, 154, 70, 0.4); */
}

.pay-card-custom .inf h6 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.section-head.style-9 h2 {
    color: #1a1a1a;
}

.section-head.style-9 p {
    color: unset;
    font-size: unset;
}

/* Choose Us Section Nav Pills */
.choose-us.style-9 .nav-pills .nav-link i {
    font-size: 20px;
    color: #5f9a46;
    transition: all 0.3s ease;
}

.choose-us.style-9 .nav-pills .nav-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.choose-us.style-9 .nav-pills .nav-link:hover {
    border-color: #5f9a46;
    box-shadow: 0 4px 15px rgba(95, 154, 70, 0.15);
    transform: translateX(5px);
}

.choose-us.style-9 .nav-pills .nav-link:hover i {
    transform: scale(1.2);
}

.choose-us.style-9 .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #5f9a46 0%, #6fa85a 100%);
    border-color: transparent;
    color: #fff;
}

.choose-us.style-9 .nav-pills .nav-link.active i {
    color: #fff;
}

.choose-us.style-9 .nav {
    justify-content: unset;
    gap: 10px;
}

/* Portfolio Filter Controls Styling */
.portfolio-page .controls .control {
    padding: 10px 24px;
    border: none;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid #e0e0e0;
}

.portfolio-page .controls .control:last-child {
    border-right: none;
}

.portfolio-page .controls .control:hover {
    color: #5f9a46;
}

.portfolio-page .controls .control.mixitup-control-active {
    background: linear-gradient(135deg, #5f9a46 0%, #6fa85a 100%);
    color: #fff;
    border-radius: 50px;
}

.portfolio-page .controls .control.mixitup-control-active:first-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.portfolio-page .controls .control.mixitup-control-active:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.portfolio-page .controls>div {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

/* Tech Icons Grid Styling */
.tech-icons-grid {
    padding: 40px 0;
}

.tech-icon-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid #f0f0f0;
}

.tech-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(95, 154, 70, 0.15);
    border-color: #5f9a46;
}

.tech-icon-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.tech-icon-card span {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.tech-category {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Active control styling */
.controls .control.active {
    background: linear-gradient(135deg, #5f9a46 0%, #6fa85a 100%) !important;
    color: #fff;
    border-radius: 50px;
}

.controls {
    margin-bottom: 20px;
}

.tech-icons-grid {
    padding: 0px;
}

.controls button {
    background: white;
    border-radius: 50px;
}

.controls button.active {
    background: linear-gradient(135deg, #5f9a46 0%, #6fa85a 100%);
}

.portfolio-page.style-1 .portfolio-projects.style-1 {
    background-color: #f0eff5;
}

/* .portfolio-page.style-1 .portfolio-projects.style-1 .controls {
    margin-bottom: 20px;
}

.tech-icons-grid {
    padding: 0px;
}

.portfolio-page.style-1 .portfolio-projects.style-1 .controls button {
    background: white;
    border-radius: 50px;
}

.portfolio-page.style-1 .portfolio-projects.style-1 .controls button.active {
    background: linear-gradient(135deg, #5f9a46 0%, #6fa85a 100%);
}

.portfolio-page.style-1 .portfolio-projects.style-1 {
    background-color: #f0eff5;
} */


/* Services Page CSS Ends HERE */
/* .service-details-header {
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 50%;
} */

/* .animation-image {
    position: absolute;
} */

/* Service Details Page Starts From here */
/* .service-details-header {
    position: relative;
    height: 86vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* .service-details-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/custom/bg/ui-ux.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    z-index: -1;
    animation: bgZoom 15s ease-in-out infinite alternate;
} */

@keyframes bgZoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.25);
    }
}

.animation-image {
    width: 100vw;
    height: 100vh;
    border-radius: 30px;
    transition: all 0.5s ease-in-out;
    object-fit: cover;
    object-position: center;
}

.animation-image-wrapper {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.tc-innerHeader-st2.service-details-header {
    position: absolute;
    width: 100%;
    z-index: -1;
}

@media (max-width: 768px) {
    .animation-image {
        min-height: 100vh;
        min-width: 100vw;
        object-fit: cover;
        border-radius: 20px;
    }
}



/* body {
    overflow: hidden;
} */

/* Service Details Page Ends here */

/* Full-width Tech Icon Card for Service Categories */
.tech-icon-card-full {
    padding: 30px 35px;
    text-align: left;
}



.tech-icon-card-full .icon-wrapper i {
    font-size: 2rem;
}

.tech-icon-card-full:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.tech-icon-card-full .content h4 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.tech-icon-card-full .content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tech-icon-card-full {
        padding: 20px;
    }

    .tech-icon-card-full .d-flex {
        flex-direction: column;
        text-align: center;
    }

    .tech-icon-card-full .icon-wrapper {
        margin-bottom: 15px;
    }
}

/* Responsive Controls for Service Details Page */
.portfolio-page .controls>div {
    padding: 8px;
}

@media (max-width: 991px) {
    .portfolio-page .controls>div {
        border-radius: 20px;
        gap: 8px;
    }

    .portfolio-page .controls .control {
        padding: 8px 16px;
        font-size: 14px;
        border-right: none;
        margin: 4px;
    }
}

.service-details .controls {
    margin-bottom: 0px !important;
}

.service-details .controls div {
    border-bottom: 0px;
    border-radius: 10px 10px 0px 0px !important;
    padding: 0px;
    overflow: auto;
}

.service-details .tech-icon-card {
    border-top: 0px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: none;
}

.bg-gray5 {
    background-color: #f0eff5;
}

/* Culture Slider Design Cards */
.culture-slider .design-card {
    background: #121212;
    padding: 40px 30px;
    border-radius: 20px;
    /* height: 100%;
    min-height: 400px; */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.culture-slider .design-card h4 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.culture-slider .design-card .icon {
    font-size: 40px;
    color: white;
    margin-bottom: 25px;
}

.culture-slider .design-card p {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.culture-slider .design-card:hover {
    background: #1a1a1a;
    transform: translateY(-10px);
    border-color: rgba(95, 154, 70, 0.3);
}

.culture-slider .swiper-slide {
    height: auto;
}

.culture-slider .swiper-container {
    padding: 20px 0 60px;
}

/* Light Theme Design Cards */
.culture-slider .design-card-light {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    /* height: 100%;
    min-height: 400px; */
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.culture-slider .design-card-light h4 {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.culture-slider .design-card-light .icon {
    font-size: 40px;
    color: #000;
    margin-bottom: 25px;
}

.culture-slider .design-card-light p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.culture-slider .design-card-light:hover {
    background: #fff;
    transform: translateY(-10px);
    border-color: rgba(95, 154, 70, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.culture-slider .design-card h4 {
    font-size: 18px;
}

.culture.style-5 .culture-card::after,
.culture.style-5 .culture-card::before {
    content: none !important;
}

/* ====== Portfolio Card Hover Effects ====== */
.portfolio.style-1 .portfolio-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid transparent;
}

.portfolio.style-1 .portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(95, 154, 70, 0.1);
}

.portfolio.style-1 .portfolio-card .img {
    overflow: hidden;
}

.portfolio.style-1 .portfolio-card .img img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio.style-1 .portfolio-card:hover .img img {
    transform: scale(1.1);
}

.portfolio.style-1 .portfolio-card .info {
    transition: background 0.4s ease;
}

.portfolio.style-1 .portfolio-card:hover .info {
    background-color: #fafafa;
}

.portfolio.style-1 .portfolio-card .info h5 a {
    transition: color 0.3s ease;
}

.portfolio.style-1 .portfolio-card:hover .info h5 a {
    color: var(--color-blue5) !important;
}

/* ====== Section Reveal Animations ====== */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up.exit {
    opacity: 0;
    transform: translateY(-50px);
}

.tc-portfolio-st17 .card-item .img::after {
    background: radial-gradient(50% 50% at 50% 50%,
            rgba(143, 207, 119, 0.8) 0%,
            /* --color-blue7 */
            rgba(111, 168, 90, 0.6) 50%,
            /* --color-secondary */
            rgba(31, 42, 28, 0.6) 100%
            /* --color-darkBlue */
        );
}

header .mag-img .imgs img {
    height: auto;
}

header:before {
    background: linear-gradient(100deg,
            var(--color-lightBlue),
            var(--color-blue7),
            var(--color-secondary),
            var(--color-blue5),
            var(--color-main),
            var(--color-blue4),
            var(--color-blue2),
            var(--color-darkBlue));
}

.color-custom-1 {
    color: #5f9a46
}

.tc-about-st17 .ab-cards .item {
    margin-top: 0px;
}

.tc-about-st17 .main-img,
.tc-about-st17 .sub-img {
    height: auto;
}

.tc-about-st17 {
    padding: 50px 0px;
}

.tc-about-st17 .main-img {
    -webkit-margin-end: 0vw;
    margin-inline-end: 0w;
}

header.style-4 .content .info h1 span {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-image: -webkit-gradient(linear,
            left top,
            right top,
            from(var(--color-blue4)),
            color-stop(30%, var(--color-blue5)),
            color-stop(30%, var(--color-blue5)),
            color-stop(73%, var(--color-blue6)),
            to(var(--color-blue7)));

    background-image: -o-linear-gradient(left,
            var(--color-blue4) 0%,
            var(--color-blue5) 30%,
            var(--color-blue5) 30%,
            var(--color-blue6) 73%,
            var(--color-blue7) 100%);

    background-image: linear-gradient(to right,
            var(--color-blue4) 0%,
            var(--color-blue5) 30%,
            var(--color-blue5) 30%,
            var(--color-blue6) 73%,
            var(--color-blue7) 100%);
}

.bg-gray-custom {
    background-color: #f0eff5;
}

.list-icon {
    font-size: 1.2rem;
}

.tc-skills-st11 {
    padding: 50px 0px;
}

.section-head.style-16 h2 {
    font-size: 40px;
}

.tc-skills-st11 .main-img {
    height: auto;
    min-height: auto;
}

.tc-skills-st11 .main-img img {
    width: 100%;
    object-fit: cover;
}

.about.style-4 .content {
    padding: 50px 0px;
}

.pricing.style-4 .content .row .col-lg-6:nth-of-type(1) .price-card {
    border-right: 1px solid #e9e8ee;
    background-color: white;
    border-bottom-right-radius: 15px;
}

.pricing.style-4 .content .row .col-lg-6:nth-of-type(2) .price-card {
    background-color: white;
}

.placeholder-pc {
    pointer-events: none;
    position: absolute;
    left: 50%;
    bottom: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    width: 29vw;
}

.screenshots.style-4 .mob-hand {
    pointer-events: none;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    /* height: auto !important; */
    max-height: none;
    /* width is set dynamically by JavaScript */
}

.screenshots.style-4 .screenshots-slider .img {
    margin: 0 auto;
    height: auto;
    width: 90%;
}

.screenshots.style-4 .screenshots-slider .img img {
    border-radius: 0px;
}

.screenshots.style-4 .screenshots-slider {
    position: static;
    top: unset;
    width: unset;
    left: unset;
}

.screenshots.style-4 {
    background-color: #f0eff5;
    overflow: visible;
    padding-top: 0px;
    padding: 0px;
    position: relative;
    height: auto;
}

.screenshots-slider.style-4 {
    padding: 150px 0px 150px 0px;
}

/* ============================================
   MOBILE RESPONSIVE STYLES FOR LMS DETAILS PAGE
   ============================================ */

/* ====== Tablet Devices (768px - 991px) ====== */
@media (max-width: 991px) {

    /* Navbar adjustments */
    .navbar.style-7 .navbar-brand {
        width: 200px;
    }

    /* Header adjustments */
    header.style-4 {
        height: auto !important;
        min-height: 60vh;
    }

    /* Chat banner padding */
    .chat-banner.about.style-7 {
        padding: 60px 30px;
    }

    /* Section padding */
    .tc-skills-st11,
    .about.style-4 .content {
        padding: 40px 0px;
    }

    /* Typography */
    .section-head.style-16 h2 {
        font-size: 32px;
    }

    header.style-4 .info h1 {
        font-size: 2.5rem;
    }

    /* Screenshots slider */
    .screenshots-slider.style-4 {
        padding: 80px 0px;
    }

    /* .mob-hand sized dynamically by JS */

    /* Swiper container adjustments for tablet */
    .screenshots.style-4 .screenshots-slider .swiper-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .screenshots.style-4 .screenshots-slider .img img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

/* ====== Mobile Devices (max-width: 767px) ====== */
@media (max-width: 767px) {

    /* Hide top navbar on mobile */
    .top-navbar.style-7 {
        display: none;
    }

    /* Navbar adjustments */
    .navbar.style-7 {
        padding: 10px 0;
    }

    .navbar.style-7 .navbar-brand {
        width: 150px;
    }

    .navbar.style-7 .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }

    /* Header adjustments */
    header.style-4 {
        height: auto !important;
        min-height: auto;
        padding: 40px 0 60px;
    }

    header.style-4 .info h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    header.style-4 .info .title_small {
        font-size: 12px;
        margin-bottom: 20px;
        padding: 6px 12px;
    }

    header.style-4 .info .text {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Remove line breaks on mobile */
    header.style-4 .info .text br {
        display: none;
    }

    /* Hero section layout */
    header.style-4 .content .row {
        flex-direction: column-reverse;
    }

    header.style-4 .content .col-lg-6 {
        margin-bottom: 30px;
    }

    header.style-4 .img {
        margin-bottom: 30px;
    }

    /* Button adjustments */
    .btn.btn-icon-circle,
    .butn.btn-icon-circle {
        padding: 10px 16px;
        font-size: 13px;
    }

    .btn small,
    .butn small {
        font-size: 13px;
        gap: 8px;
    }

    .btn.btn-icon-circle i,
    .butn.btn-icon-circle i {
        height: 20px;
        width: 20px;
    }

    /* Section padding */
    .section-padding {
        padding: 30px 0px;
    }

    .tc-about-st17,
    .tc-skills-st11,
    .about.style-4 .content {
        padding: 30px 0px;
    }

    .culture.section-padding.style-5 {
        padding: 40px 0px;
    }

    /* Typography */
    .section-head.style-16 h2,
    .section-head.style-4 h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .section-head.style-16 .sub-title,
    .section-head.style-4 .sub-title {
        font-size: 12px;
        padding: 5px 15px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 15px;
    }

    h6 {
        font-size: 14px;
    }

    .text,
    p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Cards and content blocks */
    .tc-about-st17 .ab-cards .item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .tc-about-st17 .ab-cards .item h6 {
        font-size: 18px;
    }

    .tc-about-st17 .ab-cards .item p {
        font-size: 13px;
    }

    /* Culture cards */
    .culture.style-5 .culture-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .culture.style-5 .culture-card h3 {
        font-size: 16px;
    }

    .culture.style-5 .culture-card p {
        font-size: 13px;
    }

    .culture.style-5 .culture-card .icon {
        font-size: 2rem;
    }

    /* List items with icons */
    ul li.d-flex h6 {
        font-size: 13px;
    }

    .icon-30 {
        min-width: 30px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* Chat banner */
    .chat-banner.about.style-7 {
        padding: 40px 20px;
    }

    .chat-banner.about.style-7 .info h3 {
        font-size: 1.5rem;
    }

    .chat-banner.about.style-7 .info p {
        font-size: 14px;
    }

    /* Images */
    .tc-about-st17 .main-img,
    .tc-about-st17 .sub-img,
    .tc-skills-st11 .main-img {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* Accordion */
    .faq.style-4 .accordion-button {
        font-size: 16px !important;
        padding: 15px;
    }

    .faq.style-4 .accordion-body {
        font-size: 14px;
        padding: 15px;
    }

    /* Tech icons */
    .tech-icon-card {
        padding: 15px 10px;
    }

    .tech-icon-card img {
        width: 36px !important;
        height: 36px !important;
    }

    .tech-icon-card span {
        font-size: 12px;
        margin-top: 8px;
    }

    .portfolio-projects .controls button {
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Screenshots slider */
    .screenshots-slider.style-4 {
        padding: 40px 0px;
    }

    .screenshots.style-4 {
        padding: 0;
        overflow-x: hidden;
    }

    /* .mob-hand sized dynamically by JS */

    /* Swiper container - ensure no overflow on mobile */
    .screenshots.style-4 .screenshots-slider .swiper-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .screenshots.style-4 .screenshots-slider .swiper-wrapper {
        width: 100%;
    }

    .screenshots.style-4 .screenshots-slider .swiper-slide {
        width: 100%;
        max-width: 100%;
    }

    .screenshots.style-4 .screenshots-slider .img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }

    .screenshots.style-4 .screenshots-slider .img img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    /* Footer adjustments */
    footer.style-7 .content {
        padding: 40px 0;
    }

    footer.style-7 .info-logo .logo {
        width: 180px;
        margin-bottom: 20px;
    }

    footer.style-7 .links-group h5 {
        font-size: 16px;
        margin-top: 20px;
    }

    footer.style-7 .links-group .links li a {
        font-size: 13px;
    }

    /* About section with iPad image */
    .about.style-4 .frs-content .img,
    .about.style-4 .sec-content .img {
        margin-bottom: 30px;
    }

    /* Spacing adjustments */
    .mb-60 {
        margin-bottom: 30px !important;
    }

    .mb-50 {
        margin-bottom: 25px !important;
    }

    .mb-40 {
        margin-bottom: 20px !important;
    }

    .mb-30 {
        margin-bottom: 15px !important;
    }

    .mt-50 {
        margin-top: 25px !important;
    }

    .mt-40 {
        margin-top: 20px !important;
    }

    .section-head.mb-60 {
        margin-bottom: 25px !important;
    }
}

/* ====== Small Mobile Devices (max-width: 480px) ====== */
/* .mob-hand sized dynamically by JS at all breakpoints */

@media (max-width: 480px) {

    /* Further reduce typography */
    header.style-4 .info h1 {
        font-size: 1.5rem;
    }

    .section-head.style-16 h2,
    .section-head.style-4 h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 16px;
    }

    /* Button adjustments */
    .btn.btn-icon-circle,
    .butn.btn-icon-circle {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn small,
    .butn small {
        font-size: 12px;
        gap: 6px;
    }

    /* Icon sizes */
    .icon-30 {
        min-width: 26px;
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    /* Culture cards */
    .culture.style-5 .culture-card {
        padding: 20px 15px;
    }

    /* Chat banner */
    .chat-banner.about.style-7 {
        padding: 30px 15px;
    }

    /* Tech icons - 2 columns on very small screens */
    .tech-icon-card {
        padding: 12px 8px;
    }

    .tech-icon-card img {
        width: 32px !important;
        height: 32px !important;
    }

    .tech-icon-card span {
        font-size: 11px;
    }

    /* Navbar brand even smaller */
    .navbar.style-7 .navbar-brand {
        width: 120px;
    }
}

/* ====== Fix for landscape mobile ====== */
@media (max-width: 767px) and (orientation: landscape) {
    header.style-4 {
        min-height: 50vh;
    }
}

/* ====== Continuous Logo Slider ====== */
.logo-slider {
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 40px;
}

.logo-track img {
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-track a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll through half the content (the first set of logos) */
    }
}

@media (max-width: 768px) {

    .logo-slider::before,
    .logo-slider::after {
        width: 50px;
    }

    .logo-track {
        animation-duration: 20s;
    }
}

.screenshots.style-14 .img::after {
    background: #4e7b39;
}

/* Smooth Accordion Animation for FAQ Section in About Us */
.tc-faq-st11 .accordion-collapse {
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.tc-faq-st11 .accordion-body {
    animation: fadeSlideIn 0.4s ease forwards;
    opacity: 0;
}

.tc-faq-st11 .accordion-collapse.show .accordion-body {
    opacity: 1;
}

.tc-faq-st11 .accordion-collapse.collapsing .accordion-body {
    opacity: 0;
}

.datepicker td {
    padding: 10px !important;
}

.section-head.style-13 h6::before {
    content: none;
}

footer.style-7 .info-logo .social-links a:hover {
    background-color: var(--color-blue5);
}

.testimonials.home-page::after {
    content: none;
}

.screenshots.style-14 .img::before,
.screenshots.style-14 .img::after {
    content: none;
}

.expertise-section h3 {
    font-size: 40px;
    text-transform: capitalize;
}

/* Service Page Accordion Enhancements */
.faq.style-4 .accordion-button::after {
    display: none !important;
}

.faq.style-4 .accordion-button {
    display: flex;
    align-items: center;
}

.faq.style-4 .accordion-button .accordion-arrow {
    font-size: 18px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #000;
}

/* Hover Animation: Move arrow right */
.faq.style-4 .accordion-button:hover .accordion-arrow {
    transform: translateX(5px);
}

/* Expanded State: Rotate arrow 90 degrees */
.faq.style-4 .accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(90deg);
}

/* Expanded + Hover: Rotate 90deg and move down (relative to arrow's local axis, right becomes down) */
.faq.style-4 .accordion-button:not(.collapsed):hover .accordion-arrow {
    transform: rotate(90deg) translateX(5px);
}

.about.style-3 .img-left .info-circle {
    background-color: var(--color-blue5);
}

.about.style-3 .img-left .info-circle:nth-of-type(3) {
    background-color: var(--color-blue7);
}

.about.style-3 .img-left .info-circle:nth-of-type(4) {
    background-color: var(--color-orange2);
}

.portfolio-bg {
    position: relative;
    background-image: url('../../assets/img/custom/bg/portfolio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    max-width: 100% !important;
}

.portfolio-bg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

header .cont h1 {
    color: white;
}

.tc-contact-st13 .contact-form {
    background-color: #f0eff5;
    background-image: none;
}

.inner-header.style-5 {
    background-image: none;
    background-color: #f3f7fe;
}

/* Modern File Upload UI */
.custom-file-upload {
    position: relative;
    width: 100%;
}

#unique-upload-label {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px 20px !important;
    background: #f8f9fa !important;
    border: 2px dashed #888 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    margin-bottom: 0 !important;
}

.file-upload-label:hover,
.file-upload-label.highlight {
    background: #f1f3f5;
    border-color: var(--color-blue5);
}

.file-upload-label i {
    font-size: 2.5rem;
    color: var(--color-blue5);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.file-upload-label:hover i {
    transform: translateY(-5px);
}

.file-upload-label .upload-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

.file-upload-label .upload-hint {
    font-size: 13px;
    color: #666;
}

/* Selected Files List */
#file-list {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.file-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.file-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.file-card .file-icon {
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.file-card .file-info {
    flex: 1;
    min-width: 0;
}

.file-card .file-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-card .file-size {
    font-size: 11px;
    color: #888;
}

.file-card .remove-file {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f3f5;
    border: none;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-card .remove-file:hover {
    background: #dc3545;
    color: #fff;
}


.dropdown-item.active,
.dropdown-item:active {
    background-color: #e9ecef;
}

.vetting-section {
    padding: 80px 0;
}

.vetting-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.vetting-header p {
    font-size: 16px;
    color: #555;
    max-width: 800px;
    margin-bottom: 15px;
}

.vetting-header .pass-rate {
    color: var(--color-blue2);
    font-weight: 600;
    font-size: 16px;
}

.vet-slider-container {
    padding-top: 50px;
    padding-right: 50px;
    border-right: 1px solid #e0e0e0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vetting-swiper {
    width: 100%;
    margin-bottom: 40px;
}

.vet-step-num {
    font-size: 40px;
    color: #cbd5e1;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1;
}

.vet-step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.vet-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vet-step-list li {
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}



.vet-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vet-nav {
    display: flex;
    gap: 15px;
}

.vet-prev,
.vet-next {
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
}

.vet-prev:hover,
.vet-next:hover {
    color: var(--color-blue2);
}

.vet-pagination {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Layers right side */
.vetting-layers {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 50px;
}

.layer-wrapper {
    position: relative;
    margin-top: -35px;
    z-index: 1;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.layer-wrapper::after {
    content: '';
    flex: 1;
}

.layer-wrapper.left-label {
    flex-direction: row;
}

.layer-wrapper.right-label {
    flex-direction: row-reverse;
}

.layer-wrapper:first-child {
    margin-top: 0;
    z-index: 5;
}

.layer-wrapper:nth-child(2) {
    z-index: 4;
}

.layer-wrapper:nth-child(3) {
    z-index: 3;
}

.layer-wrapper:nth-child(4) {
    z-index: 2;
}

.layer-wrapper:nth-child(5) {
    z-index: 1;
}

.layer-wrapper.active {
    transform: translateY(-5px);
}

.layer-mask svg {
    transition: all 0.3s ease;
}

/* Layer Base styling */
path#layer-left {
    opacity: 0.6;
}

path#layer-right {
    opacity: 0.4;
}

/* Active and Hover coloring */
.layer-wrapper.active .layer-mask path#layer-top,
.layer-wrapper:hover .layer-mask path#layer-top {
    fill: var(--color-main) !important;
}

.layer-wrapper.active .layer-mask path#layer-left,
.layer-wrapper:hover .layer-mask path#layer-left {
    fill: var(--color-blue5) !important;
}

.layer-wrapper.active .layer-mask path#layer-right,
.layer-wrapper:hover .layer-mask path#layer-right {
    fill: var(--color-blue7) !important;
}

/* Labels */
.layer-label {
    background: #f1f1f1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s;
    width: 100%;
    max-width: 186px;
    opacity: 0.9;
}

.layer-line {
    border: 1px dashed #ccc;
    width: 50px;
    height: 0px;
}

.label-group {
    display: flex;
    align-items: center;
    flex: 1;
}

.left-label .label-group {
    justify-content: flex-end;
}

.right-label .label-group {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* .layer-label::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    border-bottom: 1px dashed #ccc;
} */

/* .layer-label.left-label::before {
    left: 100%;
} */

.layer-label.right-label::before {
    right: 100%;
}

.layer-wrapper.active .layer-label,
.layer-wrapper:hover .layer-label {
    background: var(--color-main);
    color: #fff;
    opacity: 1;
}

/* .layer-wrapper.active .layer-label::before,
.layer-wrapper:hover .layer-label::before {
    border-color: var(--color-main);
} */

@media (max-width: 700px) {
    .layer-line {
        display: none;
    }
}

@media (max-width: 516px) {
    .vetting-layers {
        display: none;
    }
}

/* @media (max-width: 600px) {
    .vet-slider-container {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-right: 0;
        padding-bottom: 40px;
        min-height: auto;
    }

    .vetting-layers {
        margin-top: 40px;
        align-items: center;
    }

    .layer-wrapper {
        justify-content: center;
        padding-right: 0;
        gap: 15px;
        margin-top: -25px;
        flex-direction: row !important;
    }

    .layer-wrapper::after {
        display: none;
    }

    .label-group {
        flex: 0 0 auto;
    }

    .layer-wrapper.right-label .label-group {
        flex-direction: row;
    }

    .layer-label {
        display: block;
        width: auto;
        min-width: 120px;
        font-size: 11px;
        padding: 5px 12px;
        text-align: center;
    }

    .layer-line {
        display: none;
        /* Hide line on mobile for space */
/* } */

/* .layer-mask {
    width: 140px;
    flex-shrink: 0;
} */

.layer-mask svg {
    width: 100%;
    height: auto;
}

.feat-dark {
    position: relative;
    background: #15171f;
    padding: 120px 0;
}

.feat-dark .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center top;
    background-image: url("../img/custom/pattern.png");
}

.feat-dark .item .icon {
    margin-top: 10px;
}

.feat-dark .item .icon span {
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-size: 25px;
    border: 1px solid #eee;
    border-radius: 15px;
}

.feat-dark .item .cont {
    padding-left: 30px;
}

.feat-dark .item .cont h6 {
    margin-bottom: 10px;
}

.feat-dark .item .cont p {
    font-size: 13px;
}

.feat-dark {
    position: relative;
    background: #15171f;
    overflow: hidden;
}

.feat-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(95, 154, 70, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.advantage-card {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(95, 154, 70, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(95, 154, 70, 0.1);
}

.advantage-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.advantage-card:hover .icon-box {
    background: var(--color-blue7);
    transform: rotate(10deg);
}

.advantage-card .icon-box i {
    font-size: 30px;
    color: #fff;
}

.advantage-card h3,
.advantage-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* IT Teams Tabbed Section - Horizontal Pills */
.it-teams-wrapper {
    background-color: #f8f9fa;
    border-radius: 40px;
    padding: 60px 40px;
    margin: 60px 0;
}

.it-teams-wrapper .nav-pills {
    border-right: none;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    display: inline-flex;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.it-teams-wrapper .nav-pills .nav-link {
    background: transparent;
    color: #444;
    text-align: center;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 100px;
    border: none;
    transition: all 0.3s ease;
    margin: 0 2px;
}

.it-teams-wrapper .nav-pills .nav-link.active {
    color: #fff !important;
    background: var(--color-blue5) !important;
    font-weight: 600;
}

.it-content-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
}

.it-content-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.it-content-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.it-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.it-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
    font-weight: 500;
}

.it-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tech-pill {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    padding: 12px;
}

.tech-pill:hover {
    transform: translateY(-5px);
    border-color: var(--color-blue5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tech-pill img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .it-teams-wrapper .nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        max-width: 100%;
        border-radius: 20px;
        padding: 5px;
    }

    .it-content-card {
        padding: 30px;
    }
}

/* Portfolio Control Pills */
.portfolio-control {
    background: #fff !important;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-control:hover,
.portfolio-control.active {
    background: var(--color-blue5) !important;
    color: #fff !important;
    border-color: var(--color-blue5);
    box-shadow: 0 4px 20px rgba(95, 154, 70, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 536px) {
    .portfolio-control {
        padding: 8px 15px;
        font-size: 13px;
        flex: 1 1 calc(50% - 20px);
        text-align: center;
    }
}

.pricing.style-10 .pricing-table .table-body-card .sub-head {
    height: auto;
    padding: 45px;
}

/* Timeline Typography & Colors */
.timeline-card h3 {
    font-size: 16px;
    /* Slightly smaller for sophistication */
    color: #4a86e8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Premium Timeline Line - Restored Solid Style */
.about-page.style-2 .timeline .timeline-content::after {
    background-color: #d2e7ff;
    width: 1px;
}

.about-page.style-2 .timeline .timeline-content .timeline-card .line {
    background-color: var(--color-blue5);
    width: 1px;
    overflow: visible !important;
}

/* Elevated Icon Nodes */
.about-page.style-2 .timeline .timeline-content .timeline-card .line i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue7);
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(74, 134, 232, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-card:hover .line i {
    transform: translate(-50%, -50%) scale(1.1);
    color: #fff;
    background: var(--color-blue7);
}

/* Premium Feature Cards */
.about-page.style-2 .timeline .timeline-content .card-info {
    padding: 35px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #f0f4f9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-card:hover .card-info {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #d2e7ff;
}

.about-page.style-2 .timeline .timeline-content .card-info h6 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111;
}

/* Sophisticated Bullet Points */
.timeline-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.timeline-list li::before {
    content: "\F26A";
    /* Bootstrap Icon check-circle-fill code */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    width: auto;
    height: auto;
    background: none;
    color: var(--color-blue7);
    font-size: 14px;
    border-radius: 0;
}

.about-page.style-2 .timeline .timeline-content .timeline-card::after {
    display: none;
}

/* Feature Section Icons Styling */
.feat-card .icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #f0f4f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.feat-card:hover .icon {
    background: var(--color-blue5);
    color: #fff;
    border-color: var(--color-blue5);
    transform: rotateY(180deg);
}

.pricing.style-10 .pricing-table .table-body-card.recommended-card,
.pricing.style-10 .pricing-table .table-body-card.recommended-card .sub-body ul {
    background-color: var(--color-blue2);
}

.pricing.style-10 .pricing-table .table-body-card.recommended-card .sub-body {
    border: 15px solid var(--color-blue2);
}

/* WOW.js Fallback: Ensure animations have duration and fill-mode even if .animated class is missing */
.wow {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Custom Animation Fallback: Trigger transition when WOW.js makes the element visible */
.left_to_right_apperance[style*="visibility: visible"] {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.dropdown-item.active,
.dropdown-item:active {
    color: black;
}

.dropdown-menu {
    width: 100% !important;
    left: 0;
}

.custom-dd {
    position: static !important;
}

/* Web App Hero Header CSS */
.tc-innerHeader-st2.service-details-header.webapp-hero {
    --hero-accent: #8fcf77;
    --hero-accent-soft: #6ea85a;
    --hero-text-soft: rgba(255, 255, 255, 0.82);
    --hero-spot-x: 12%;
    --hero-spot-y: 8%;
    --hero-spot-size: 42%;
    --hero-grid-shift: 0px;
    --hero-sheen-shift: 0px;
    position: relative;
    width: 100%;
    z-index: 1;
    /* padding: clamp(130px, 14vw, 188px) 0 clamp(80px, 8vw, 118px); */
    padding: clamp(80px, 8vw, 118px);
    overflow: hidden;
    background: radial-gradient(var(--hero-spot-size) 55% at var(--hero-spot-x) var(--hero-spot-y), rgba(143, 207, 119, 0.26), transparent 72%), radial-gradient(34% 44% at 90% 10%, rgba(110, 168, 90, 0.2), transparent 74%), linear-gradient(132deg, #111d0f 0%, #20351a 42%, #192b14 100%);
}

.tc-innerHeader-st2.service-details-header.webapp-hero::before,
.tc-innerHeader-st2.service-details-header.webapp-hero::after {
    content: ;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tc-innerHeader-st2.service-details-header.webapp-hero::before {
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 34%), radial-gradient(58% 64% at 74% 96%, rgba(10, 16, 9, 0.6), transparent 72%);
    transform: translate3d(var(--hero-sheen-shift), 0, 0);
}

.tc-innerHeader-st2.service-details-header.webapp-hero::after {
    background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: 0.22;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), transparent 80%);
    transform: translate3d(0, var(--hero-grid-shift), 0);
}

.webapp-hero .container {
    position: relative;
    z-index: 2;
}

.webapp-hero .hero-content {
    max-width: 590px;
    position: relative;
}

.webapp-hero .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 17px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.webapp-hero .hero-kicker .hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hero-accent);
    box-shadow: 0 0 16px rgba(143, 207, 119, 0.68);
    flex: 0 0 8px;
}

.webapp-hero .section-head h2,
.webapp-hero .section-head p {
    color: #fff;
}

.webapp-hero .hero-title {
    font-size: clamp(35px, 4.15vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.webapp-hero .hero-title .title-line {
    display: block;
    overflow: visible;
}

.webapp-hero .hero-title .title-line>span {
    display: block;
    opacity: 1;
    visibility: visible;
    will-change: clip-path, transform;
    clip-path: inset(0 0 0 0);
}

.webapp-hero .hero-title .title-accent {
    color: #c4f78d;
}

.webapp-hero .hero-subtitle {
    max-width: 53ch;
    color: var(--hero-text-soft);
    margin-bottom: 18px;
}

.webapp-hero .hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.webapp-hero .hero-proof-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1;
}

.webapp-hero .hero-proof-list li::before {
    content: ;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero-accent-soft);
    box-shadow: 0 0 12px rgba(110, 168, 90, 0.58);
    flex: 0 0 6px;
}

.webapp-hero .hero-actions .btn {
    min-height: 52px;
    border-radius: 999px;
    padding-inline: 22px;
}

.webapp-hero .hero-actions .btn.border-white {
    background: rgba(255, 255, 255, 0.06);
}

.webapp-hero .hero-actions .btn small {
    font-size: 14px;
    gap: 12px;
}

.webapp-hero .hero-metrics {
    margin-top: 26px;
}

.webapp-hero .hero-metric-card {
    height: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(144deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    padding: 16px 18px;
    backdrop-filter: blur(6px);
}

.webapp-hero .hero-metric-card h4 {
    margin: 0 0 4px;
    color: #fff;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1;
}

.webapp-hero .hero-metric-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.35;
}

.webapp-hero .webapp-hero-visual {
    position: relative;
    isolation: isolate;
    /* min-height: clamp(415px, 50vw, 580px); */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .webapp-hero .webapp-hero-frame {
    width: 100%;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at top right, rgba(143, 207, 119, 0.16), transparent 30%), linear-gradient(180deg, #0f190d 0%, #121f10 100%);
    box-shadow: 0 35px 90px rgba(5, 8, 4, 0.45);
    transform-style: preserve-3d;
    will-change: transform;
} */

.webapp-hero .webapp-hero-frame::before {
    /* content: ""; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: linear-gradient(180deg, rgba(10, 16, 8, 0.74), rgba(10, 16, 8, 0.14));
    z-index: 2;
}

.webapp-hero .webapp-hero-frame::after {
    /* content: ""; */
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(11, 17, 9, 0.6), transparent 45%), linear-gradient(to right, rgba(255, 255, 255, 0.08), transparent 52%);
    z-index: 2;
}

.webapp-hero .webapp-hero-surface {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 26px 26px 26px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 18px;
}

.webapp-hero .webapp-browser-dots {
    position: absolute;
    top: 14px;
    left: 18px;
    display: inline-flex;
    gap: 7px;
    z-index: 3;
}

.webapp-hero .webapp-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.webapp-hero .webapp-browser-dots span:nth-child(1) {
    background: #ff6f61;
}

.webapp-hero .webapp-browser-dots span:nth-child(2) {
    background: #f7c44c;
}

.webapp-hero .webapp-browser-dots span:nth-child(3) {
    background: #8fcf77;
}

.webapp-hero .hero-surface-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.webapp-hero .hero-surface-title strong,
.webapp-hero .hero-surface-title small,
.webapp-hero .hero-surface-badge,
.webapp-hero .hero-surface-stat span,
.webapp-hero .hero-surface-stat small,
.webapp-hero .hero-service-panel h5,
.webapp-hero .hero-service-panel p,
.webapp-hero .hero-service-panel li,
.webapp-hero .hero-service-footer strong,
.webapp-hero .hero-service-footer small {
    color: #fff;
}

.webapp-hero .hero-surface-title strong,
.webapp-hero .hero-service-footer strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

.webapp-hero .hero-surface-title small,
.webapp-hero .hero-surface-stat small,
.webapp-hero .hero-service-panel p,
.webapp-hero .hero-service-footer small {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.webapp-hero .hero-surface-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(143, 207, 119, 0.14);
    border: 1px solid rgba(143, 207, 119, 0.32);
    color: #d8ffb2;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.webapp-hero .hero-surface-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.webapp-hero .hero-surface-stat {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.webapp-hero .hero-surface-stat span {
    display: block;
    margin-bottom: 4px;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #d8ffb2;
}

.webapp-hero .hero-service-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px;
}

.webapp-hero .hero-service-panel {
    border-radius: 20px;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.webapp-hero .hero-service-panel h5 {
    font-size: 18px;
    margin: 0 0 8px;
}

.webapp-hero .hero-service-panel p {
    margin: 0 0 14px;
}

.webapp-hero .hero-service-list,
.webapp-hero .hero-phase-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.webapp-hero .hero-service-list li,
.webapp-hero .hero-phase-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.84);
}

.webapp-hero .hero-service-list li+li,
.webapp-hero .hero-phase-list li+li {
    margin-top: 9px;
}

.webapp-hero .hero-service-list li::before,
.webapp-hero .hero-phase-list li::before {
    content: ;
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8fcf77;
    box-shadow: 0 0 14px rgba(143, 207, 119, 0.5);
}

.webapp-hero .hero-service-footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.webapp-hero .hero-service-footer .footer-block {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.webapp-hero .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.webapp-hero .hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: clamp(8px, 1.8vw, 20px);
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    z-index: 3;
}

.webapp-hero .hero-scroll-cue .cue-line {
    width: 22px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    transform-origin: left center;
}

.webapp-hero .webapp-hero-float-card {
    position: absolute;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(11, 19, 9, 0.78);
    color: #fff;
    line-height: 1.35;
    padding: 12px 15px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 40px rgba(4, 6, 3, 0.35);
}

.webapp-hero .webapp-hero-float-card small {
    display: block;
    margin-bottom: 4px;
    opacity: 0.76;
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.webapp-hero .webapp-hero-float-card.hero-card-top {
    top: 24px;
    left: -26px;
}

.webapp-hero .webapp-hero-float-card.hero-card-bottom {
    right: -26px;
    bottom: 26px;
}

.webapp-hero .webapp-hero-orb {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
}

.webapp-hero .webapp-hero-orb-1 {
    width: 230px;
    height: 230px;
    top: -58px;
    right: -34px;
    background: radial-gradient(circle, rgba(143, 207, 119, 0.68), rgba(143, 207, 119, 0));
}

.webapp-hero .webapp-hero-orb-2 {
    width: 170px;
    height: 170px;
    left: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(110, 168, 90, 0.56), rgba(110, 168, 90, 0));
}

@media (max-width: 1199px) {
    .webapp-hero .webapp-hero-float-card.hero-card-top {
        left: -12px;
    }

    .webapp-hero .webapp-hero-float-card.hero-card-bottom {
        right: -12px;
    }
}

@media (max-width: 991px) {
    .webapp-hero .hero-copy {
        text-align: center;
    }

    .webapp-hero .hero-subtitle {
        margin-inline: auto;
    }

    .webapp-hero .hero-proof-list {
        justify-content: center;
    }

    .webapp-hero .hero-actions,
    .webapp-hero .hero-metrics {
        justify-content: center;
    }

    .webapp-hero .webapp-hero-visual {
        margin-top: 12px;
    }

    .webapp-hero .hero-surface-stats,
    .webapp-hero .hero-service-grid,
    .webapp-hero .hero-service-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .webapp-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .webapp-hero .webapp-hero-surface {
        padding-inline: 18px;
    }

    .webapp-hero .hero-surface-topbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .webapp-hero .webapp-hero-surface {
        height: 360px;
        padding: 16px 16px 16px;
        overflow-y: auto;
    }

    .webapp-hero .webapp-hero-float-card {
        position: static;
        max-width: none;
        margin-top: 12px;
        text-align: left;
    }

    .webapp-hero .hero-scroll-cue {
        display: none;
    }
}

/* Mega Menu Styles */
.navbar .nav-item.dropdown.custom-dd {
    position: static;
}

.mega-menu {
    width: 100%;
    max-width: 1100px;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border: none;
    border-radius: 24px !important;
    padding: 30px !important;
    margin-top: 15px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    background: #0a0a0a !important;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.mega-menu-inner {
    display: flex;
    gap: 0;
}

.mega-col {
    padding: 0 30px;
}

.mega-col-expertise {
    flex: 0 0 280px;
    border-right: 1px solid #222;
}

.mega-col-services {
    flex: 1;
}

.mega-col-digital {
    flex: 0 0 320px;
}

.mega-col-title {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* Expertise Pills */
.mega-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #1a1a1a;
    /* Subtle dark background */
    color: #fff !important;
    border-radius: 50px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-pill:hover,
.mega-pill.active {
    background: var(--color-primary);
    transform: translateX(5px);
}

.mega-pill-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-pill-icon img {
    filter: brightness(0) invert(1);
    width: 100%;
}

.mega-pill-icon i {
    font-size: 16px;
}

/* Service Grid */
.mega-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.mega-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #eee !important;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.mega-service-item img,
.mega-service-item i {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    font-size: 16px;
}

.mega-service-item:hover,
.mega-service-item.active {
    color: var(--color-primary) !important;
    transform: translateX(3px);
}

.mega-service-item:hover img,
.mega-service-item:hover i {
    opacity: 1;
    color: var(--color-primary);
}

/* Digital Solutions */
.mega-digital-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.mega-digital-desc {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mega-digital-cta {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary) !important;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.mega-digital-cta:hover {
    gap: 8px;
}

@media (max-width: 991px) {
    .mega-menu {
        position: relative !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 15px !important;
    }

    .mega-menu-inner {
        flex-direction: column;
    }

    .mega-col {
        padding: 15px 0;
        border: none !important;
        flex: none !important;
    }

    .mega-services-grid {
        grid-template-columns: 1fr;
    }
}