/* home-banner  */
.hero-section {
    padding-top: 180px;
    padding-bottom: 6rem;
    position: relative;
    width: 100%;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--black)
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 25%,
            rgba(0, 0, 0, 0.35) 60%,
            rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.hero-section .bg-video {
    z-index: 0;
}

.hero-section::before {
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section .hero-inner-content {
    max-width: 672px;
}

.hero-section .hero-inner-content h1 {
    margin-bottom: 20px;
}

.hero-section .hero-inner-content p {
    max-width: 576px;
    margin-bottom: 32px;
}

.hero-section .bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.hero-section .stars {
    display: flex;
    gap: 2px;
}

.hero-section .stars svg {
    width: 12px;
    height: 12px;
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

.hero-section .badge-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-primary);
}

.hero-section .hero-section h1 {
    margin-bottom: 24px;
    color: var(--white);
}

.hero-section .hero-section p {
    margin-bottom: 32px;
    color: var(--para-white);
}

.hero-section .underline-wave {
    position: relative;
    display: inline-block;
}

.hero-section .underline-wave svg {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
}

.hero-section .features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-section .feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--para-white);
}

.hero-section .feature-item svg {
    width: 15px;
    height: 15px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.hero-section .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-section .btn-video {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s;
}

.hero-section .video-box iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

.hero-section .btn-video:hover {
    color: var(--primary-color);
}

.hero-section .play-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.hero-section .btn-video:hover .play-circle {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-section .play-circle svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    margin-left: 2px;
}

.hero-section .btn-video span {
    font-size: 14px;
    font-weight: 500;
}

.hero-section .play-circle {
    position: relative;
}

.hero-section .play-circle::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}


.hero-section .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.hero-section .video-box {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.hero-section .video-box video {
    width: 100%;
    border-radius: 10px;
}

.hero-section .close {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
}

.hero-section .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-section .tag {
    padding: 6px 12px;
    font-size: 12px;
    color: var(--para-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-section .tag:hover {
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.hero-section .tag:hover {
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
}

.hero-section .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section .stat {
    text-align: center;
    opacity: 1;
    /* transform: translateY(10px);
    animation: fadeUp 0.6s forwards; */
}

.hero-section .counter-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-primary);
    font-variant-numeric: tabular-nums;
}

.hero-section .label {
    margin-top: 4px;
    color: rgb(156 163 175);
}

/* .hero-section .stat:nth-child(1) {
    animation-delay: 0s;
}

.hero-section .stat:nth-child(2) {
    animation-delay: 0.1s;
}

.hero-section .stat:nth-child(3) {
    animation-delay: 0.2s;
}

.hero-section .stat:nth-child(4) {
    animation-delay: 0.3s;
} */

/* @keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* swiper  */
.hero-section .ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #111827;
    padding: 18px 0;
}

.hero-section .ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.hero-section .ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    white-space: nowrap;
    color: #d1d5db;
    font-size: 15px;
    font-weight: 500;
}

.hero-section .dot {
    width: 7px;
    height: 7px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

/* home-client  */

.review-zone {
    color: var(--white);
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.review-zone .review-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        linear-gradient(rgba(80, 140, 255, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 140, 255, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.review-zone .avtar-image {
    width: 36px;
    height: 36px;
    object-fit: scale-down;
}

.review-zone .view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.review-zone .review-top {
    text-align: center;
    margin-bottom: 50px;
}

.review-zone .review-tag {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.review-zone .review-title {
    margin-bottom: 10px;
    color: #111827;
}

.review-zone .review-gradient {
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    color: transparent;
}

.review-zone .review-subtitle {
    color: var(--para);
    max-width: 520px;
    margin: auto;
}

.review-zone .review-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

.review-zone .review-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 16px;
}

.review-zone .review-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.review-zone .review-main-card {
    aspect-ratio: 16 / 9;
}

.review-zone .review-main-card.review-video-card.first {
    aspect-ratio: 16 / 10;
}

.review-zone .review-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-zone .review-mini-card {
    aspect-ratio: 16 / 9;
}

.review-zone .review-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.review-zone .review-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 60%);
}

.review-zone .review-overlay-blue {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 175, 0.2);
    transition: 0.3s ease;
}

.review-zone .review-video-card:hover .review-img {
    transform: scale(1.08);
}

.review-zone .review-video-card:hover .review-overlay-blue {
    background: rgba(30, 64, 175, 0.1);
}

.review-zone .review-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-zone .review-play-btn.small {
    width: 48px;
    height: 48px;
}

.review-zone .review-play-btn i::before {
    color: #fff;
}

.review-zone .review-time {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
}

.review-zone .review-bottom {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
}

.review-zone .review-person {
    display: flex;
    gap: 10px;
    align-items: center;
}

.review-zone .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.review-zone .review-person-text h3 {
    font-size: 14px;
    font-weight: 700;
}

#review-videoFrame {
    width: 100%;
    height: 500px;
    border: none;
}

.review-zone .review-person-text p {
    font-size: 12px;
    color: #cbd5e1;
    font-weight: 400;
}

.review-zone .review-stars {
    color: #3b82f6;
    font-size: 12px;
    margin-top: 4px;
}

.review-zone .review-quote {
    margin-top: 10px;
    font-size: 12px;
    color: #d1d5db;
    font-style: italic;
    max-width: 260px;
    background-color: #ffffff1a;
    padding: 8px 12px;
    border-radius: 8px;
}

.review-zone .review-mini-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
}

.review-zone .review-mini-info h3 {
    font-size: 14px;
}

.review-zone .review-mini-info p {
    font-size: 12px;
    color: #cbd5e1;
}

.review-zone .trust-zone {
    padding: 70px 20px;
    padding-bottom: 0px;
    text-align: center;
}

.review-zone .trust-wrapper {
    max-width: 1100px;
    margin: auto;
}

.review-zone .trust-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 35px;
}

.review-zone .trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.review-zone .trust-item-logos {
    display: flex;
    gap: 30px;
    /* justify-content: space-between; */
}

.review-zone .trust-item-logos img {
    max-width: 100px;
    object-fit: contain;
    height: auto;
    width: 100%;
}

.review-zone .trust-item {
    font-size: 20px;
    font-weight: 800;
    color: #374151;
    cursor: default;
    transition: 0.3s ease;
    letter-spacing: -0.5px;
}

.review-zone .trust-item:hover {
    color: #60a5fa;
    transform: translateY(-2px);
}

.review-zone .review-video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.review-zone .review-video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-zone .review-video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
}

.review-zone .review-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.review-zone .review-video-modal-close {
    position: absolute;
    top: -5px;
    right: -3px;
    background: #000;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 100%;
}

/* home-contact  */

#contact {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}

#contact .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
}

#contact .shape-right {
    width: 500px;
    height: 500px;
    background: #dbeafe;
    top: -200px;
    right: -150px;
}

#contact .shape-left {
    width: 400px;
    height: 400px;
    background: #e0f2fe;
    bottom: -200px;
    left: -150px;
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#contact .span-badge {
    background: #dbeafe;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

#contact .section-header h2 {
    margin-bottom: 15px;
    color: #111827;
}

#contact .section-header h2 span {
    color: var(--secondary-color);
}

#contact .section-header p {
    max-width: 600px;
    margin: auto;
    color: var(--para);
}

#contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

#contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#contact .info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

#contact .icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .info-card small {
    color: var(--para);
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 11px;
}

#contact .info-card .p-sm {
    color: #1f2937;
}

#contact .office-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 180px;
}

#contact .office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact .office-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 64, 175, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .office-image span {
    background: var(--white);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

#contact .contact-form {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    font-family: var(--font-primary);
}

#contact .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#contact .form-group {
    margin-bottom: 20px;
}

#contact .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-family: var(--font-primary);
}

#contact .contact-form::placeholder {
    color: var(--para);
}

#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    font-family: var(--font-primary);
}

#contact .form-group input:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

#contact textarea {
    resize: none;
}

#contact .form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

#contact .form-footer p {
    font-size: 13px;
    color: var(--para);
}

/* home-cta  */

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #1d4ed8, #1e3a8a);
}

.cta-section .cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px,
            white 1px,
            transparent 0px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-section .cta-circle {
    position: absolute;
    border-radius: 50%;
}

.cta-section .cta-circle-1 {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.1);
    top: -130px;
    left: -130px;
}

.cta-section .cta-circle-2 {
    width: 380px;
    height: 380px;
    background: rgba(0, 0, 0, 0.1);
    right: -190px;
    bottom: -190px;
}

.cta-section .cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    text-align: center;
}

.cta-section .cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section .cta-title span {
    color: #bfdbfe;
}

.cta-section .cta-description {
    max-width: 650px;
    margin: auto;
    color: #dbeafe;
    margin-bottom: 45px;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-section .primary-btn {
    background: var(--white);
    color: #1d4ed8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-section .primary-btn:hover {
    background: #eff6ff;
    transform: translateY(-3px);
}

.cta-section .secondary-btn {
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-section .cta-features {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
}

.cta-section .cta-features span {
    color: #dbeafe;
    font-size: 14px;
}

/* home-faq  */

.faq-section {
    background: #060e1a;
}

.faq-section .faq-title {
    color: var(--white);
    margin-bottom: 60px;
}

.faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .faq-item {
    background: #0d1b2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: #0d1b2e;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 24px;
    box-shadow: none !important;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #112338;
    color: var(--white);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-body {
    background: #112338;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
}

.faq-section .faq-bottom {
    margin-top: 70px;
}

.faq-section .faq-bottom p {
    color: #9ca3af;
    margin-bottom: 24px;
}

.faq-section .faq-btn {
    display: inline-block;
    border-radius: 999px;
}

/* =========================
   INDUSTRIES SECTION
========================= */

#industries {
    position: relative;
    background-color: rgb(13 27 42 / 1);
    overflow: hidden;
}

#industries .industries-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 2px 2px,
            rgba(37, 99, 235, 0.5) 1px,
            transparent 0px);
    background-size: 48px 48px;
    pointer-events: none;
}

#industries .industries-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 250px;
    background: rgba(37, 99, 235, 0.12);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
}

#industries .industries-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: auto;
}

#industries .industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 70px;
}

#industries .industries-badge {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 20px;
}

#industries .industries-title {
    color: var(--white);
}

#industries .industries-title span {
    color: var(--primary-color);
}

#industries .industries-subtitle {
    max-width: 320px;
    color: var(--para);
    text-align: right;
}

#industries .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

#industries .industry-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 0.4s ease;
    cursor: pointer;
}

#industries .industry-card:hover {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

#industries .industry-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

#industries .industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#industries .industry-card:hover img {
    transform: scale(1.08);
}

#industries .industry-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2),
            transparent);
}

#industries .industry-count {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

#industries .red {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

#industries .blue {
    background: rgba(59, 130, 246, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

#industries .green {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

#industries .orange {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

#industries .industry-top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
    transition: 0.4s ease;
}

#industries .industry-card:hover .industry-top-line {
    opacity: 1;
}

#industries .red-line {
    background: linear-gradient(90deg,
            transparent,
            #ef4444,
            transparent);
}

#industries .blue-line {
    background: linear-gradient(90deg,
            transparent,
            #3b82f6,
            transparent);
}

#industries .green-line {
    background: linear-gradient(90deg,
            transparent,
            #22c55e,
            transparent);
}

#industries .orange-line {
    background: linear-gradient(90deg,
            transparent,
            #f59e0b,
            transparent);
}

#industries .industry-content {
    padding: 24px;
}

#industries .industry-content h3 {
    color: var(--white);
    margin-bottom: 12px;
}

#industries .industry-content p {
    color: var(--para);
    margin-bottom: 20px;
}

#industries .industry-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    opacity: 0;
    transform: translateY(6px);
    transition: all 0.35s ease;
}

#industries .industry-card:hover .industry-link {
    opacity: 1;
    transform: translateY(0);
}

#industries .industry-card:hover .industry-link {
    gap: 12px;
}

#industries .industry-card:hover .industry-link {
    gap: 12px;
}

#industries .red-text {
    color: #ef4444;
}

#industries .blue-text {
    color: #3b82f6;
}

#industries .green-text {
    color: #22c55e;
}

#industries .orange-text {
    color: #f59e0b;
}

/* home-innovation  */
.home-innovation .row {
    display: flex;
    align-items: stretch;
}

.home-innovation .image-row .col-md-6 {
    display: flex;
}

.home-innovation .image-row .col-md-6>div {
    width: 100%;
    height: 100%;
}

.home-innovation .innovation-head {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-innovation p {
    color: var(--para);
    margin-bottom: 20px;
}

.home-innovation img {
    border-radius: 20px;
    height: 200px;
    object-fit: cover;
    object-position: top center;
}

.home-innovation .images-innovation {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.home-innovation .images-innovation>*:first-child {
    grid-column: 1 / -1;
    height: 400px;
}

.home-innovation .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.innovation-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.innovation-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.innovation-images img.active {
    opacity: 1;
}

.home-innovation .text-slider {
    position: relative;
    overflow: hidden;
    height: 110px;
}

.home-innovation .slide-track span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 80px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.home-innovation .slide-track span.active {
    opacity: 1;
    transform: translateY(0);
}

/* home-partner  */
.partners-section {
    overflow: hidden;
    background: #060e1a;
    font-family: Arial, sans-serif;
}

.partners-section .container {
    text-align: center;
    margin-bottom: 40px;
}

.partners-section .span-badge {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    margin-bottom: 16px;
}

.partners-section .section-title {
    color: var(--white);
}

.partners-section .gradient-text {
    background: linear-gradient(to right, var(--primary-color), #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-section .partners-wrapper {
    position: relative;
}

.partners-section .fade-left,
.partners-section .fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-section .fade-left {
    left: 0;
    background: linear-gradient(to right, #060e1a, transparent);
}

.partners-section .fade-right {
    right: 0;
    background: linear-gradient(to left, #060e1a, transparent);
}

.partners-section .partners-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.partners-section .partner-card {
    width: 208px;
    background: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 16px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
}

.partners-section .partner-card:hover {
    /* background: #162436;
    border-color: rgba(255, 255, 255, 0.15); */
    transform: translateY(-4px);
}

.partners-section .partner-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.partners-section .partner-logo img {
    width: 200px;
    object-fit: scale-down;
}

.partners-section .partner-card p {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 12px;
}

.partners-section .accenture {
    font-size: 32px;
    font-weight: 300;
}

.partners-section .google-cloud {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 18px;
}

.partners-section .azure {
    font-size: 32px;
    font-weight: 300;
}

.partners-section .servicenow {
    font-size: 24px;
}

.partners-section .adobe {
    font-size: 40px;
    font-weight: 900;
}

.partners-section .magento,
.partners-section .salesforce,
.partners-section .shopify,
.partners-section .stripe {
    font-size: 28px;
    font-weight: 600;
}

.partners-section .databricks,
.partners-section .hubspot {
    font-size: 24px;
    font-weight: 600;
}

.partners-section .aws {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
}

/* =========================
   PORTFOLIO SECTION
========================= */

#portfolio {
    background: #f8fafc;
    overflow: hidden;
}

#portfolio .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#portfolio .span-badge {
    background: #dbeafe;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

#portfolio .section-title {
    color: #111827;
    margin-bottom: 20px;
}

#portfolio .gradient-text {
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#portfolio .section-subtitle {
    max-width: 720px;
    margin: auto;
    color: #6b7280;
}

#portfolio .filter-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

#portfolio .filter-buttons button {
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: var(--white);
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#portfolio .filter-buttons button:hover {
    border-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

#portfolio .filter-buttons button.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

#portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

#portfolio .portfolio-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #eef2f7;
    transition: all 0.4s ease;
    position: relative;
}

#portfolio .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

#portfolio .card-image {
    position: relative;
    overflow: hidden;
}

#portfolio .card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#portfolio .portfolio-card:hover .card-image img {
    transform: scale(1.08);
}

#portfolio .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.1),
            transparent);
}

#portfolio .category {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    z-index: 2;
}

#portfolio .icon-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

#portfolio .portfolio-card:hover .icon-btn {
    opacity: 1;
}

#portfolio .icon-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

#portfolio .card-content {
    padding: 28px;
}

#portfolio .card-content h3 {
    color: #111827;
    margin-bottom: 14px;
    transition: 0.3s ease;
}

#portfolio .portfolio-card:hover .card-content h3 {
    color: var(--secondary-color);
}

#portfolio .card-content p {
    color: var(--para);
    margin-bottom: 22px;
}

#portfolio .card-content .p-sm {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#portfolio .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

#portfolio .tags span {
    background: #eff6ff;
    color: var(--secondary-color);
    padding: 7px 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

#portfolio .case-study {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

#portfolio .case-study:hover {
    gap: 12px;
}

#portfolio .view-all {
    text-align: center;
    margin-top: 70px;
}

#portfolio .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

#portfolio .btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}


/* home-product  */
.products-section {
    position: relative;
    overflow: hidden;
    background: #060e1a;
}

.products-section .grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 60px 60px;
}

.products-section .blur-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.products-section .blur-blue {
    top: 0;
    left: 20%;
    background: rgba(37, 99, 235, 0.15);
}

.products-section .blur-green {
    bottom: 0;
    right: 20%;
    background: rgba(16, 185, 129, 0.15);
}

.products-section .container {
    position: relative;
    z-index: 2;
}

.products-section .section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.products-section .span-badge {
    background: rgba(37, 99, 235, 0.2);
    color: var(--primary-color);
    margin-bottom: 20px;
}

.products-section .heading {
    color: var(--white);
}

.products-section .heading span {
    background: linear-gradient(to right, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-section .features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.products-section .feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.products-section .feature span {
    font-size: 14px;
    color: #9ca3af;
}

.products-section .feature svg {
    color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.products-section .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.products-section .card {
    background: #0d1b2e;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.products-section .card:hover {
    background: #112338;
}

.products-section .card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.products-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.5s;
}

.products-section .card:hover img {
    transform: scale(1.08);
}

.products-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, #0d1b2e);
}

.products-section .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.products-section .icon-box {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.products-section .icon-box i {
    width: 20px;
    height: 20px;
}

.products-section .card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.products-section .card-subtitle {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.products-section .card-title {
    color: var(--white);
    margin-bottom: 14px;
}

.products-section .card-text {
    color: #9ca3af;
    margin-bottom: 24px;
}

.products-section .list {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.products-section .list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--para-white);
    font-size: 14px;
}

.products-section .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.products-section .stats {
    display: flex;
    gap: 15px;
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 22px;
}

.products-section .stat {
    flex: 1;
    text-align: center;
}

.products-section .stat h4 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 700;
}

.products-section .stat p {
    font-size: 12px;
    color: var(--white);
    font-weight: 400;
}

.products-section .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.products-section .btn:hover {
    opacity: 0.9;
}

.products-section .btn i {
    width: 16px;
    height: 16px;
    transition: 0.3s;
}

.products-section .btn:hover i {
    transform: translateX(4px);
}

.products-section .blue {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15);
}

.products-section .blue .tag {
    background: #2563eb;
}

.products-section .blue .icon-box {
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary-color);
}

.products-section .blue .card-subtitle,
.products-section .blue .stat h4 {
    color: var(--primary-color);
}

.products-section .blue .dot {
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

.products-section .blue .stats {
    background: rgba(37, 99, 235, 0.1);
}

.products-section .blue .btn {
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

.products-section .green {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.products-section .green .tag {
    background: #016645;
}

.products-section .green .icon-box {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.products-section .green .card-subtitle,
.products-section .green .stat h4 {
    color: #34d399;
}

.products-section .green .dot {
    background: linear-gradient(to right, #016645, #14b8a6);
}

.products-section .green .stats {
    background: rgba(16, 185, 129, 0.1);
}

.products-section .green .btn {
    background: linear-gradient(to right, #016645, #14b8a6);
}

.products-section .orange {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.15);
}

.products-section .orange .tag {
    background: #943E00;
}

.products-section .orange .icon-box {
    background: rgba(249, 115, 22, 0.15);
    color: #fb923c;
}

.products-section .orange .card-subtitle,
.products-section .orange .stat h4 {
    color: #fb923c;
}

.products-section .orange .dot {
    background: linear-gradient(to right, #943E00, #fbbf24);
}

.products-section .orange .stats {
    background: rgba(249, 115, 22, 0.1);
}

.products-section .orange .btn {
    background: linear-gradient(to right, #943E00, #fbbf24);
}

.products-section .bottom {
    margin-top: 70px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.products-section .bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.products-section .bottom p a {
    color: var(--primary-color);
    font-weight: 600;
}

.products-section .outline-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    transition: 0.3s;
}

.products-section .outline-btn i {
    width: 14px;
    height: 14px;
}

.products-section .outline-btn:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Arial, sans-serif;
    justify-content: center;
}

.product-stars {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #ddd;
    line-height: 1;
}

.product-stars::before {
    content: "★★★★★";
}

.product-rating .stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #FFC107;
}

.product-rating .stars-fill::before {
    content: "★★★★★";
}

.product-rating .rating-number {
    font-size: 16px;
    font-weight: bold;
    color: var(--para-white);
}

/* home-service  */
#services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#services .span-badge {
    margin-bottom: 20px;
}

#services .section-header h2 {
    margin-bottom: 20px;
}

#services .section-header h2 span {
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .section-header p {
    max-width: 750px;
    margin: auto;
    color: var(--para);
}

#services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

#services .service-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 28px;
    transition: .3s;
}

#services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

#services .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

#services .icon img {
    width: 30px;
    height: 30px;
    object-fit: scale-down;

}

#services .blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

#services .teal {
    background: linear-gradient(135deg, #14b8a6, #0f766e);
}

#services .sky {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

#services .indigo {
    background: linear-gradient(135deg, #6366f1, #4338ca);
}

#services .cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

#services .green {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

#services .blue2 {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}

#services .gray {
    background: linear-gradient(135deg, #64748b, #334155);
}

#services .service-card h3 {
    margin-bottom: 12px;
}

#services .service-card p {
    color: var(--para);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#services .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

#services .tags span {
    background: #f3f4f6;
    color: #505359;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
}

#services .service-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

#services .btn-wrap {
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* home-tech  */
.tech-section {
    background: linear-gradient(135deg, #0b1220, #0a1628, #0b1220);
    color: var(--white);
    overflow: hidden;
}

.tech-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-section .span-badge {
    margin-bottom: 15px;
}

.tech-section .section-header h2 {
    margin-bottom: 10px;
}

.tech-section .section-header h2 span {
    background: linear-gradient(to right, #22d3ee, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-section .section-header p {
    max-width: 500px;
    margin: auto;
    color: var(--para);
}

.tech-section .card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-section .tech-card {
    position: relative;
    height: 250px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .4s ease;
}

.tech-section .tech-card:hover {
    transform: translateY(-8px);
}

.tech-section .tech-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.7s ease, filter 0.5s ease;
    filter: brightness(0.85);
}

.tech-section .tech-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.tech-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 33%) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.5s ease;
}

.tech-section .tech-card:hover .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.tech-section .gradient {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0.12);
}

.tech-section .content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    z-index: 2;
}

.tech-section .content h3 {
    color: var(--white);
    margin-bottom: 8px;
    position: absolute;
    bottom: 20px;
    transform: rotate(0deg);
}

.tech-section .card-wrapper:hover .tech-card:hover .content h3 {
    transform: rotate(0deg);
    opacity: 1;
    bottom: 135px;
}

.tech-section .desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(12px);
    transition: all 0.5s ease;
    color: var(--white);
}

.tech-section .desc .p-sm {
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tech-section .tech-card:hover .desc {
    max-height: 160px;
    opacity: 1;
    transform: translateY(0);
}

.tech-section .desc a {
    display: inline-block;
    font-size: 12px;
    padding: 8px 16px;
    font-weight: 600;
}

.tech-section .number {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--white);
}

.tech-section .tech-card:hover .number {
    display: none;
}

.tech-section .footer-btn {
    text-align: center;
    margin-top: 40px;
}

.tech-section .footer-btn a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border: 1px solid #3b82f666;
    color: #93c5fd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tech-section .footer-btn a:hover {
    background: rgba(37, 99, 235, 0.10);
    border-color: #60a5fa;
    color: #bfdbfe;
}

/* responsive */

@media (max-width: 1499px) {
    .home-innovation .images-innovation>*:first-child {
        height: 300px;
    }
}

@media (max-width: 1399px) {
    .home-innovation .images-innovation>*:first-child {
        height: 265px;
    }
}

@media (max-width: 1200px) {

    #industries .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-innovation .text-slider {
        height: 90px;
    }

    .home-innovation .slide-track span {
        font-size: 64px;
    }

    .home-innovation .innovation-head {
        font-size: 50px;
    }

    .innovation-images {
        min-height: 450px;
    }

    #portfolio .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 1024px) {

    .hero-section .badge-text {
        font-size: 11px;
    }

    .hero-section .feature-item {
        font-size: 13px;
    }

    .hero-section .btn-video span {
        font-size: 13px;
    }

    .hero-section .tag {
        font-size: 11px;
    }

    .hero-section .counter-number {
        font-size: 40px;
    }

    .hero-section .label {
        font-size: 13px;
    }

    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-section .card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-section .tech-card {
        flex: 1 1 calc(50% - 14px);
        min-height: 250px;
    }

    .tech-section .tech-card:hover {
        flex: 1 1 calc(50% - 14px);
        transform: none;
    }

    .tech-section .card-wrapper:hover .tech-card:not(:hover) .content h3 {
        transform: rotate(0deg);
        writing-mode: unset;
    }
}

@media (max-width:991px) {
    .review-zone .trust-item-logos {
        flex-wrap: wrap;
    }

    .review-zone .review-grid,
    .review-zone .review-grid2 {
        grid-template-columns: 1fr;
    }

    #contact .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-section .counter-number {
        font-size: 30px;
    }

    #contact .contact-form {
        padding: 30px;
    }

    .cta-section .cta-description {
        font-size: 17px;
    }

    .faq-section .faq-title {
        margin-bottom: 50px;
    }

    .home-innovation .images-innovation>*:first-child {
        height: auto;
    }

    .home-innovation .innovation-head {
        font-size: 40px;
        margin-bottom: 15px;
        display: block;
    }

    .home-innovation .row {
        display: block;
    }

    .home-innovation .image-row .col-md-6 {
        display: block;
        width: 100%;
    }

    .home-innovation .image-row .col-md-6:last-child {
        margin-top: 30px;
    }

    .home-innovation .text-slider {
        height: 70px;
    }

    .home-innovation .slide-track span {
        font-size: 52px;
    }

    .innovation-images {
        min-height: 350px;
        height: 350px;
    }

    .home-innovation .bg-video {
        min-height: 400px;
        height: 400px;
    }

    .partners-section .partner-card {
        width: 180px;
    }

    .partners-section .accenture,
    .partners-section .azure,
    .partners-section .aws {
        font-size: 28px;
    }

    .partners-section .adobe {
        font-size: 34px;
    }

    .partners-section .magento,
    .partners-section .salesforce,
    .partners-section .shopify,
    .partners-section .stripe {
        font-size: 24px;
    }

    .partners-section .partners-track {
        gap: 16px;
    }

    .products-section .cards {
        grid-template-columns: 1fr;
    }

}

@media (max-width:767px) {
    .hero-section {
        padding-top: 150px;
    }

    .hero-section .video-box iframe {
        height: 250px;
    }

    .hero-section .badge-text {
        font-size: 11px;
    }

    .hero-section .feature-item {
        font-size: 12px;
    }

    .hero-section .btn-video span {
        font-size: 13px;
    }

    .hero-section .tag {
        font-size: 11px;
    }

    .hero-section .counter-number {
        font-size: 34px;
    }

    .hero-section .label {
        font-size: 12px;
    }

    .hero-section .stats {
        margin-top: 30px;
        padding-top: 30px;
    }

    .review-zone .trust-item {
        font-size: 16px;
    }

    .review-zone .trust-logos {
        gap: 20px;
    }

    .review-zone .review-quote {
        display: none;
    }

    #contact .form-grid {
        grid-template-columns: 1fr;
    }

    #contact .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    #contact .form-footer button {
        width: 100%;
    }

    .cta-section .cta-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .cta-section .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 24px;
    }

    .cta-section .cta-features {
        gap: 18px;
        margin-top: 40px;
    }

    .cta-section .cta-features span {
        width: 100%;
        font-size: 13px;
    }

    .cta-section .cta-circle-1 {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }

    .cta-section .cta-circle-2 {
        width: 250px;
        height: 250px;
        right: -125px;
        bottom: -125px;
    }

    .faq-section .faq-title {
        margin-bottom: 40px;
    }

    .faq-section .accordion-button {
        padding: 20px;
        font-size: 15px;
    }

    .faq-section .accordion-body {
        padding: 20px;
        font-size: 14px;
    }

    .faq-section .faq-bottom {
        margin-top: 50px;
    }

    #industries .industries-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }

    #industries .industries-subtitle {
        text-align: left;
        max-width: 100%;
    }

    #industries .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-innovation .innovation-head {
        font-size: 30px;
    }

    .home-innovation .text-slider {
        height: 50px;
    }

    .home-innovation .slide-track span {
        font-size: 38px;
    }

    .innovation-images {
        min-height: 280px;
        height: 280px;
    }

    .home-innovation .bg-video {
        min-height: auto;
        height: auto;
    }


    .partners-section .container {
        margin-bottom: 30px;
    }


    .partners-section .partner-card {
        width: 150px;
        border-radius: 16px;
        padding: 16px 12px;
    }

    .partners-section .partner-card p {
        font-size: 10px;
    }

    .partners-section .accenture,
    .partners-section .azure,
    .partners-section .aws {
        font-size: 22px;
    }

    .partners-section .adobe {
        font-size: 28px;
    }

    .partners-section .servicenow,
    .partners-section .databricks,
    .partners-section .hubspot {
        font-size: 18px;
    }

    .partners-section .magento,
    .partners-section .salesforce,
    .partners-section .shopify,
    .partners-section .stripe {
        font-size: 20px;
    }

    .partners-section .google-cloud {
        font-size: 14px;
    }

    .partners-section .fade-left,
    .partners-section .fade-right {
        width: 60px;
    }

    .partners-section .partners-track {
        gap: 12px;
        animation-duration: 20s;
    }

    #portfolio .section-header {
        margin-bottom: 45px;
    }

    #portfolio .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #portfolio .card-content {
        padding: 22px;
    }

    #portfolio .filter-buttons {
        gap: 10px;
    }

    #portfolio .filter-buttons button {
        padding: 11px 18px;
        font-size: 14px;
    }

    #services .section-header {
        margin-bottom: 40px;
    }

    #services .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #services .service-card {
        padding: 24px;
    }

    #services .icon {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }

    .tech-section .content h3 {
        top: 20px;
        transform: unset;
        bottom: unset;
    }

    .tech-section .card-wrapper {
        grid-template-columns: 1fr;
    }

    .tech-section .tech-card {
        width: 100%;
        height: 240px;
        min-height: 240px;
        flex: none;
    }

    .tech-section .tech-card:hover {
        flex: none;
        transform: none;
    }

    .tech-section .desc {
        max-height: 120px;
        opacity: 1;
        transform: none;
    }

    .tech-section .number {
        display: flex;
    }
}

@media (max-width:575px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 3rem;
    }

    .hero-section .badge-text {
        font-size: 10px;
    }

    .hero-section .feature-item {
        font-size: 12px;
    }


    .hero-section .btn-video span {
        font-size: 12px;
    }

    .hero-section .tag {
        font-size: 10px;
    }

    .hero-section .counter-number {
        font-size: 28px;
    }

    .hero-section .label {
        font-size: 11px;
    }

    .contact-form {
        padding: 20px;
    }

    #contact .info-card {
        padding: 15px;
    }

    .cta-section .cta-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .cta-section .cta-btn {
        font-size: 14px;
        padding: 14px 20px;
    }

    .cta-section .cta-features span {
        font-size: 12px;
    }

    .faq-section .faq-btn {
        width: 100%;
        text-align: center;
    }

    #industries .industry-image {
        height: 210px;
    }

    #industries .industry-content {
        padding: 20px;
    }

    .home-innovation .text-slider {
        height: 42px;
    }

    .home-innovation .slide-track span {
        font-size: 30px;
    }

    .innovation-images {
        min-height: 220px;
        height: 220px;
    }

    .partners-section .partner-card {
        width: 130px;
        padding: 14px 10px;
    }

    .partners-section .accenture,
    .partners-section .azure,
    .partners-section .aws {
        font-size: 18px;
    }

    .partners-section .adobe {
        font-size: 24px;
    }

    .products-section .btn,
    #services .service-card a {
        font-size: 14px;
    }

    #portfolio .view-all {
        margin-top: 40px;
    }

    .partners-section .magento,
    .partners-section .salesforce,
    .partners-section .shopify,
    .partners-section .stripe {
        font-size: 16px;
    }

    .partners-section .servicenow,
    .partners-section .databricks,
    .partners-section .hubspot {
        font-size: 15px;
    }

    .partners-section .google-cloud {
        font-size: 12px;
    }

    .partners-section .partner-card p {
        font-size: 9px;
    }

    #portfolio .filter-buttons {
        justify-content: center;
        gap: 8px;
    }

    #portfolio .filter-buttons button {
        font-size: 14px;
        padding: 11px 16px;
    }

    #portfolio .card-image img {
        height: 220px;
    }

    #portfolio .card-content {
        padding: 20px;
    }

    #portfolio .tags span {
        font-size: 12px;
        padding: 6px 10px;
    }

    #portfolio .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .products-section .section-top {
        margin-bottom: 50px;
    }

    .products-section .features {
        gap: 15px;
    }

    #services .service-card {
        padding: 20px;
        border-radius: 16px;
    }

    #services .tags span {
        font-size: 11px;
        padding: 5px 10px;
    }

    .tech-section .tech-card {
        height: 220px;
    }

    .tech-section .desc {
        max-height: 150px;
    }

    .review-zone .review-play-btn.small,
    .review-zone .review-play-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 475px) {

    .home-innovation .images-innovation {
        gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }

    .home-innovation img {
        height: auto;
    }
}

@media (max-width: 370px) {
    .hero-section .badge {
        flex-direction: column;
        align-items: self-start;
    }
}