
:root {
    --tj-color-theme-primary: #1db9a5;
    --tj-color-bg-dark: #0b1f1e;
    --tj-color-bg-darker: #0a1918;
    --tj-space-edge: 15px;
}

/* Custom Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--tj-color-theme-primary) #E8F3F2;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #E8F3F2;
}

*::-webkit-scrollbar-thumb {
    background: var(--tj-color-theme-primary);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #24d4bd;
}

html {
    background: #F1F6F5;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #F1F6F5;
    color: #F1F6F5;
    margin: var(--tj-space-edge);
    margin-bottom: 0;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    :root {
        --tj-space-edge: 10px;
    }
}

/* Visibility Helpers */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: inline-flex !important;
        z-index: 9999;
    }
}

/* ========================================
   TOP NAVIGATION
   ======================================== */
.top-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 80%;
    max-width: 95%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    /* Fixed height for reliable vertical centering */
    padding: 0 30px;
    background: rgba(11, 31, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.top-nav.nav-hidden {
    transform: translate(-50%, -100px);
    opacity: 0;
    pointer-events: none;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-logo {
    position: relative;
    left: 0;
    display: flex;
    align-items: center;
    margin-right: 30px;
    /* Added spacing to the right */
}

.nav-logo-img {
    height: 40px;
    /* Reduced from 48px */
    width: auto;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    background: transparent;
    padding: 0;
    margin: 0;
    /* Override Bootstrap ul margin */
}

.nav-menu li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    /* Matches hamburger and logo visual height */
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    /* Essential for vertical centering */
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-menu li a svg {
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover svg {
    transform: rotate(180deg);
}

/* HAMBURGER */
.hamburger-btn {
    position: relative;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: calc(100vh - var(--tj-space-edge) - 15px);
    position: relative;
    overflow: hidden;
    background: var(--tj-color-bg-dark);
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/hero/h5-hero-hm.jpeg") center/cover no-repeat;
    opacity: 0.65;
    /* Slightly less opaque to let the dark background bleed through more */
    filter: brightness(0.8) contrast(1.2) saturate(0.9);
    will-change: transform;
    transform: translateZ(0);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Dramatically darken the edges to focus on the subjects */
    background: radial-gradient(circle at 65% 40%, transparent 10%, rgba(11, 31, 30, 0.45) 40%, rgba(11, 31, 30, 0.98) 90%);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape-lines-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
    height: 450px;
    opacity: 0.25;
    /* Very subtle, just like the reference */
    object-fit: contain;
    object-position: left top;
    z-index: 1;
    mix-blend-mode: screen;
}

.shape-lines-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 450px;
    height: 450px;
    opacity: 0.2;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    mix-blend-mode: screen;
}

/* Teal Glow Effects - Based on reference image */
.glow-top-right {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 650px;
    height: 650px;

    .glow-bottom-left {
        position: absolute;
        top: 25%;
        left: -15%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, rgba(29, 185, 165, 0.5) 0%, transparent 75%);
        filter: blur(100px);
        pointer-events: none;
        z-index: 1;
        will-change: transform;
        transform: translateZ(0);
    }

    background: radial-gradient(circle, rgba(29, 185, 165, 0.5) 0%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
}

.shape-circle-top {
    position: absolute;
    left: 60px;
    top: 100px;
    width: 80px;
    height: 80px;
    animation: rotate 20s linear infinite;
}

.shape-dots-right {
    position: absolute;
    right: 100px;
    bottom: 120px;
    width: 60px;
    height: 60px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Content - SOLDA (Absolute) */
.hero-content {
    position: absolute;
    left: 240px;
    top: 40%;
    transform: translateY(-50%);
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.1rem, 3.6vw + 0.6rem, 4.6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-title .accent {
    color: #1db9a5;
}

/* Primary Button - HIZLI ve MODERN HOVER */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 10px 10px 32px;
    /* Asymmetric padding for circle icon */
    background: #1db9a5;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(29, 185, 165, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-icon {
    width: 44px;
    height: 44px;
    background: #0b1f1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: #fff;
    color: #1db9a5;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover .btn-icon {
    background: #1db9a5;
    color: #0b1f1e;
    transform: scale(1.05);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(29, 185, 165, 0.4);
}

.primary-btn .btn-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover .btn-arrow {
    transform: rotate(45deg);
    /* Point straight right (horizontal) */
}

/* Hero Box - SAĞDA ve AŞAĞIDA (Absolute) */
.hero-box {
    position: absolute;
    right: 180px;
    top: 65%;
    background: rgba(255, 255, 255, 0.12);
    /* Slightly more visible glassmorphism */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    /* Increased padding */
    border-radius: 24px;
    max-width: 350px;
    /* Increased width */
    color: #fff;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-box-icon {
    width: 36px;
    height: 36px;
    background: rgba(29, 185, 165, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-box p {
    font-size: 16px;
    /* Increased font size */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    /* White text for dark box */
    margin-bottom: 24px;
}

/* Desktop: hide the in-box CTA button */
.hero-box-cta {
    display: none;
}

.counter {
    display: flex;
    align-items: baseline;
}

.count {
    font-size: 56px;
    /* Increased counter size */
    font-weight: 700;
    color: #3FBDAC;
    line-height: 1;
}

.count-suffix {
    font-size: 32px;
    /* Increased suffix size */
    font-weight: 600;
    color: #fff;
    /* White suffix for dark box */
}

.count-suffix sup {
    font-size: 16px;
    color: #1db9a5;
}

/* Brand Link */
.brand-link {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #1db9a5;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.brand-link:hover {
    color: #fff;
    border-bottom-color: #1db9a5;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #fff;
}

.scroll-text {
    margin-bottom: 8px;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) translateZ(0);
    }

    50% {
        transform: translateY(5px) translateZ(0);
    }
}

/* ========================================
   OFFCANVAS MENU
   ======================================== */
.tj-offcanvas {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.tj-offcanvas.active {
    pointer-events: all;
}

.tj-offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tj-offcanvas.active .tj-offcanvas-overlay {
    opacity: 1;
}

.tj-offcanvas-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: rgba(20, 32, 32, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.tj-offcanvas.active .tj-offcanvas-panel {
    transform: translateX(0);
}

/* Offcanvas Header */
.tj-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tj-offcanvas-logo .logo {
    height: 40px;
    /* Increased to match navbar */
    width: auto;
}

.tj-offcanvas-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tj-offcanvas-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Offcanvas Text */
.tj-offcanvas-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Offcanvas Sections */
.tj-offcanvas-section {
    margin-bottom: 32px;
}

.tj-offcanvas-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

/* Search */
.mobile-only-section {
    display: none;
    /* Hide on desktop by default */
}

/* Offcanvas Menu */
.tj-offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tj-offcanvas-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tj-offcanvas-menu li:last-child {
    border-bottom: none;
}

.tj-offcanvas-menu li a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tj-offcanvas-menu li a:hover {
    color: #1db9a5;
    padding-left: 10px;
}

/* Contact Info */
.tj-offcanvas-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #1db9a5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: #1db9a5;
}

/* Social Icons */
.tj-offcanvas-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1db9a5;
    border-color: #1db9a5;
    color: #0b1f1e;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    position: relative;
    background: #0a1918;
    overflow: visible;
    border-radius: 20px 20px 0 0;
    transition: margin 0.3s ease, padding 0.3s ease;
}

.site-footer.footer-has-cta {
    margin-top: 10px;
    /* Increased space above CTA block */
    padding-top: 10px;
    /* Space for the BOTTOM half of the CTA */
}

/* Newsletter Section */
.footer-newsletter {
    padding: 80px 80px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 50px 60px;
}

.newsletter-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    flex-shrink: 0;
}

.newsletter-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
    border-color: rgba(29, 185, 165, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: #1db9a5;
    color: #0b1f1e;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(29, 185, 165, 0.4);
}

.newsletter-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.newsletter-agree input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1db9a5;
}

.newsletter-agree a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.newsletter-agree a:hover {
    color: #1db9a5;
}

/* CTA Section */
.footer-cta-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.ftt-cta-area {
    width: 90%;
    max-width: 1300px;
    background-color: #2B8C8C;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centers exactly on the boundary line */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    height: 338px;
}

@media (max-width: 1400px) {
    .ftt-cta-area {
        max-width: calc(100% - 60px);
    }
}

.ftt-cta-content {
    width: 50%;
    padding: 30px 55px;
    /* Tighter padding for better fit */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ftt-cta-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.ftt-cta-btn-wrap {
    margin-top: 0;
}

.ftt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #0b1f1e;
    /* Using a solid dark color for visibility */
    color: #fff;
    padding: 10px 10px 10px 25px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 54px;
    width: fit-content;
}

.ftt-cta-btn .btn-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1f1e;
    transition: all 0.3s ease;
}

.ftt-cta-btn:hover {
    transform: scale(1.05);
    background: #fff;
    color: #0b1f1e;
}

.ftt-cta-btn:hover .btn-icon {
    background: #1a8a8a;
    color: #fff;
    transform: rotate(45deg);
}

.ftt-cta-img {
    width: 50%;
    position: relative;
    /* For gradient overlay positioning */
}

/* Gradient Overlay for Seamless Blend */
.ftt-cta-img::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 45%;
    background: linear-gradient(to right, #2B8C8C 10%, rgba(43, 140, 140, 0.6) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.ftt-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Background pattern removed as per request for clean color */

@media (max-width: 1200px) {
    .footer-cta-block {
        padding: 80px 40px 40px;
    }

    .ftt-cta-content {
        padding: 50px 40px;
    }
}

@media (max-width: 991px) {
    .site-footer.footer-has-cta {
        margin-top: 10px;
        padding-top: 10px;
    }

    .footer-cta-block {
        padding: 60px 20px 40px;
    }

    .ftt-cta-area {
        flex-direction: column;
        text-align: center;
        padding: 0;
        height: auto;
        min-height: auto;
    }

    .ftt-cta-content {
        width: 100%;
        padding: 40px 30px;
        align-items: center;
    }

    .ftt-cta-img {
        width: 100%;
        height: 250px;
        order: -1;
    }

    /* Mobile Gradient: Bottom to Top */
    .ftt-cta-img::after {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, #2B8C8C 5%, rgba(43, 140, 140, 0.5) 40%, transparent 100%);
    }
}

/* Footer Main */
.footer-main {
    padding: 80px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.footer-col-1 {
    max-width: 380px;
}

.footer-col-2,
.footer-col-3 {
    display: none;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-awards {
    display: flex;
    gap: 16px;
}

.award-badge {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.award-badge:hover {
    opacity: 1;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #1db9a5;
    transform: translateX(4px);
}

.footer-more-link {
    color: var(--tj-color-theme-primary) !important;
    font-weight: 600;
    font-size: 13px !important;
    letter-spacing: 0.5px;
}

.footer-more-link::before {
    content: '...';
    margin-right: 4px;
    letter-spacing: 2px;
}

.footer-location-label {
    display: block;
    font-weight: 700;
    color: var(--tj-color-theme-primary) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.badge-new {
    display: inline-block;
    padding: 2px 8px;
    background: #1db9a5;
    color: #0b1f1e;
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-contact .contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 140px;
}

.footer-contact .contact-item:nth-child(2) {
    flex: 2;
}

.footer-contact .contact-item:last-child {
    display: none;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #1db9a5;
}

.contact-hours {
    flex-direction: row !important;
    align-items: center;
    gap: 8px !important;
    color: rgba(255, 255, 255, 0.6);
}

.contact-hours svg {
    flex-shrink: 0;
}

/* Footer Copyright */
.footer-copyright {
    padding: 24px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}


.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #1db9a5;
    border-color: #1db9a5;
    color: #0b1f1e;
}

/* "Follow Us" label — overrides circle styles from .footer-social a */
.footer-social a.footer-follow-label {
    width: auto;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    display: inline;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social a.footer-follow-label:hover {
    background: none;
    border: none;
    color: #3AB9A5;
}

.copyright-menu {
    display: flex;
    gap: 24px;
}

.copyright-menu a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-menu a:hover {
    color: #1db9a5;
}

/* Footer Shapes */
.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    height: 400px;
}

.footer-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* ========================================
   RESPONSIVE - HEADER & HERO
   ======================================== */

/* Large Desktop to Small Desktop */
@media (max-width: 1400px) {
    .hero-content {
        left: 120px;
    }

    .hero-box {
        right: 100px;
    }
}

@media (max-width: 1200px) {
    .top-nav {
        min-width: 90%;
        padding: 8px 18px;
    }

    .nav-logo {
        left: 0;
    }

    .hamburger-btn {
        right: 0;
    }



    .nav-menu li a {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-content {
        left: 80px;
        max-width: 480px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        margin-bottom: 25px;
    }

    .hero-box {
        right: 60px;
        max-width: 260px;
        padding: 20px;
    }
}

/* Tablet - Hide Nav Menu */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-only-section {
        display: block;
        /* Show menu in offcanvas on tablet/mobile */
    }

    .top-nav {
        width: calc(100% - 40px);
        min-width: auto;
        padding: 8px 20px;
        top: 20px;
    }

    .nav-logo {
        left: 0;
    }

    .hamburger-btn {
        right: 0;
    }

    /* Hero adjustments for tablet */
    .hero-content {
        left: 60px;
        top: 38%;
        max-width: 420px;
    }

    .hero-title {
        font-size: clamp(2rem, 5.5vw, 2.6rem);
        margin-bottom: 24px;
    }

    .hero-box {
        right: 40px;
        top: 50%;
        max-width: 240px;
        padding: 18px;
    }

    .hero-box p {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .count {
        font-size: 40px;
    }

    .count-suffix {
        font-size: 24px;
    }

    .primary-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .newsletter-title {
        width: 100%;
    }

    .newsletter-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile - Stack Layout */
@media (max-width: 768px) {
    .hero {
    min-height: calc(100svh - var(--tj-space-edge) - 5px);
    height: auto;
    padding: 90px 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
  }

    .hero-bg {
        background-position: 65% center;
        opacity: 0.7;
    }

    .top-nav {
        width: calc(100% - 20px);
        max-width: 90%;
        padding: 12px 16px;
        height: auto;
        /* Allow auto height on mobile */
        border-radius: 40px;
        background: rgba(11, 31, 30, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-logo-img {
        height: 32px;
        /* Smaller on mobile */
    }

    .nav-logo {
        margin-right: 15px;
        /* Reduced spacing on mobile */
    }



    .hamburger-btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
    }

    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        padding: 0;
        margin-bottom: 25px;
        text-align: center;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        margin-bottom: 24px;
        margin-top: 24px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.02em;
    }

    .primary-btn {
        padding: 12px 12px 12px 28px;
        font-size: 14px;
        margin-top: 24px;
    }

    .btn-icon {
        width: 38px;
        height: 38px;
    }

    .hero-box {
    position: relative;
    right: auto;
    top: auto;

    width: min(92vw, 360px);
    max-width: 100%;

    margin: 0 auto;
    padding: 10px;

    box-sizing: border-box;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);

    animation: floatMobile 6s ease-in-out infinite;

    display: flex;
    flex-direction: column;

    will-change: transform;
    }

    @keyframes floatMobile {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    .hero-box-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
    }

    .hero-box p {
        font-size: 18px;
        margin-bottom: 14px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.85);
    }

    /* Mobile: hide brand-link, show and align in-box CTA button */
    .hero-box .brand-link {
        display: none;
    }

    .hero-box-cta {
        display: inline-flex;
        align-self: flex-end;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        gap: 5px;
        color: #1db9a5;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        opacity: 0.85;
        margin-top: 6px;
    }

    .hero-box-cta:hover {
        background: transparent;
        box-shadow: none;
        transform: none;
        opacity: 1;
        color: #fff;
    }

    .primary-btn.hero-box-cta > span {
    color: aquamarine;
    }

    .hero-box-cta .btn-icon {
        width: auto;
        height: auto;
        background: transparent;
        border-radius: 0;
        color: aquamarine;
    }

    .hero-box-cta .btn-icon svg {
        width: 10px;
        height: 10px;
    }

    .count {
        font-size: 42px;
    }

    .count-suffix {
        font-size: 24px;
    }

    .scroll-down {
        display: none;
    }

    /* Mobile: faster reveal animations to reduce "late load" feeling */
    .reveal {
        transform: translateY(16px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .split-char {
        transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
    }

    .shape-lines-left,
    .shape-lines-right {
        width: 300px;
        height: 300px;
        opacity: 0.15;
    }

    .offcanvas-panel {
        padding: 24px;
    }

    .tj-offcanvas-text {
        display: none;
    }

    .footer-newsletter,
    .footer-main,
    .footer-copyright {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-newsletter {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .newsletter-content {
        padding: 30px 24px;
        gap: 24px;
    }

    .newsletter-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        padding: 14px 18px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .newsletter-agree {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-main {
        padding: 50px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-logo img {
        margin-bottom: 16px;
    }

    .footer-desc,
    .footer-col-2,
    .footer-col-3 {
        display: none;
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-contact {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact .contact-item {
        align-items: center;
        text-align: center;
        min-width: unset;
    }

    .contact-hours {
        justify-content: center;
    }

    .footer-copyright {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        order: -1;
        gap: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .copyright-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .copyright-text {
        order: 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 60px 20px 40px;
        border-radius: 12px;
    }

    .top-nav {
        padding: 12px 16px;
    }

    .nav-logo-img {
        height: 26px;
    }

    .hamburger-btn {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }

    .hamburger-btn span {
        width: 16px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 10vw, 2rem);
        margin-bottom: 15px;
    }

    .primary-btn {
        padding: 2px 6px;
        font-size: 13px;
    }

    .hero-box {
        max-width: 100%;
        padding: 16px;
    }

    .count {
        font-size: 32px;
    }

    .count-suffix {
        font-size: 20px;
    }

    /* Footer - Small Mobile */
    .footer-newsletter,
    .footer-main,
    .footer-copyright {
        padding-left: 16px;
        padding-right: 16px;
    }

    .newsletter-content {
        padding: 24px 16px;
    }

    .newsletter-title {
        font-size: 1.2rem;
    }

    .newsletter-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .newsletter-agree {
        font-size: 11px;
    }

    .footer-main {
        padding: 40px 16px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links a,
    .footer-contact .contact-item span,
    .footer-contact .contact-item a {
        font-size: 13px;
    }

    .copyright-text,
    .copyright-menu a {
        font-size: 12px;
    }
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
    position: relative;
    margin-right: 15px;
}

/* Globe pill button (desktop) */
.lang-globe-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 7px 13px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-globe-btn:hover,
.lang-globe-btn.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(29, 185, 165, 0.5);
    color: #fff;
}

.lang-current-code {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lang-chevron {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.lang-globe-btn.active .lang-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Desktop dropdown panel */
.lang-dropdown-desktop {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 150px;
    background: rgba(18, 30, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

.lang-dropdown-desktop.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Option items inside desktop dropdown */
.lang-btn {
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 9px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    display: block;
    font-family: inherit;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lang-btn.active {
    background: rgba(29, 185, 165, 0.12);
    border-color: var(--tj-color-theme-primary);
    color: var(--tj-color-theme-primary);
    font-weight: 600;
}

/* Mobile Language Switcher in Offcanvas */
.offcanvas-lang {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switcher-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lang-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.globe-icon {
    color: var(--tj-color-theme-primary);
}

.lang-selection-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lang-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-btn-mobile {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-btn-mobile::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tj-color-theme-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.lang-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    padding-left: 24px;
}

.lang-btn-mobile.active {
    background: rgba(29, 185, 165, 0.12);
    border-color: var(--tj-color-theme-primary);
    color: var(--tj-color-theme-primary);
}

.lang-btn-mobile.active::after {
    opacity: 1;
    transform: scale(1);
}

/* Responsive for Language Switcher */
/* Header Mobile Language Switcher */
.lang-switcher-header-mobile {
    position: relative;
    display: none;
    /* Hidden on desktop */
}

.header-lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.header-lang-btn:hover,
.header-lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--tj-color-theme-primary);
}

.header-lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 180px;
    background: rgba(20, 32, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

.header-lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-lang-dropdown .lang-btn-mobile {
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    text-align: left;
    transition: all 0.2s ease;
}

.header-lang-dropdown .lang-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.08);
}

.header-lang-dropdown .lang-btn-mobile.active {
    background: rgba(29, 185, 165, 0.12);
    border-color: var(--tj-color-theme-primary);
    color: var(--tj-color-theme-primary);
}

@media (max-width: 992px) {
    .lang-switcher {
        display: none !important;
    }

    .lang-switcher-header-mobile {
        display: block;
        margin-right: 10px;
    }
}


/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-section {
    background: #e8f3f2;
    padding: 100px 0;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Solutions Header */
.solutions-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.solutions-header-left {
    max-width: 900px;
}

.solutions-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1db9a5;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.solutions-subtitle svg {
    width: 16px;
    height: 16px;
}

.solutions-title {
    font-size: clamp(1.4rem, 3.2vw, 2.0rem);
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.2;
    margin: 0;
}

.solutions-explore-btn {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #0b1f1e;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.solutions-explore-btn:hover {
    background: #1db9a5;
    transform: translateY(-2px);
}

.solutions-explore-btn svg {
    transform: rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.solutions-explore-btn:hover svg {
    transform: rotate(45deg) translateX(3px) rotateY(360deg);
}

/* Solution Cards */
.solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 320px;
    position: relative;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.solution-card:hover {
    background: #1db9a5;
    box-shadow: 0 12px 40px rgba(29, 185, 165, 0.3);
}

.solution-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b1f1e;
    margin: 0;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.solution-card:hover .solution-card-title {
    color: #fff;
}

/* Icon with gradient circle - ABSOLUTE FIXED position */
.solution-card-icon {
    position: absolute;
    left: 28px;
    top: 48%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 185, 165, 0.15) 0%, rgba(255, 255, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1db9a5;
    transition: all 0.5s ease;
    perspective: 1000px;
}

.solution-card-icon svg {
    width: 38px;
    height: 38px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(29, 185, 165, 0.2) 100%);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.solution-card:hover .solution-card-icon svg {
    transform: rotateY(360deg);
}

/* Description and Button share same bottom area */
.solution-card-desc {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.solution-card:hover .solution-card-desc {
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);

}

/* Learn More button - geçici olarak gizlendi */
.solution-card-btn {
    display: none !important;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0b1f1e;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 28px;
    left: 28px;
    transform: translateY(20px) scale(0.9);
}

.solution-card-btn span {
    display: inline-block;
    transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    perspective: 1000px;
}

.solution-card:hover .solution-card-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.solution-card-btn:hover span {
    transform: rotateY(360deg);
}

.solution-card-btn:hover {
    background: #fff;
    color: #0b1f1e;
}

.solution-card-btn svg {
    transition: transform 0.3s ease;
}

.solution-card-btn:hover svg {
    transform: rotate(45deg) translateX(2px);
}

/* Splide Overrides - Slider stays within container */
.solutions-slider {
    margin-top: 20px;
}

.solutions-slider .splide__track {
    overflow: hidden;
}

.solutions-slider .splide__slide {
    padding: 10px 0;
}

/* Pagination Dots */
.solutions-slider .splide__pagination {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    gap: 8px;
    display: flex;
    justify-content: center;
}

.solutions-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: rgba(11, 31, 30, 0.2);
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 1;
    cursor: pointer;
}

.solutions-slider .splide__pagination__page.is-active {
    background: #1db9a5;
    width: 32px;
    border-radius: 5px;
}

/* Solutions Responsive */
@media (max-width: 992px) {
    .solutions-container {
        padding: 0 40px;
    }

    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 20px 0 80px;
    }

    .solutions-container {
        padding: 0 24px;
    }

    .solutions-header {
        margin-bottom: 6px;
    }

    .solutions-slider {
        margin-top: 10px;
    }

    .solution-card {
        height: auto;
        min-height: 280px;
        padding: 24px;
        padding-bottom: 0px;
        /* Space for button */
    }

    .solution-card-title {
        font-size: 16px;
    }

    .solution-card-icon {
        width: 70px;
        height: 70px;
        position: absolute;
        left: 28px;
        top: 44%;
        transform: translateY(-50%);

    }

    .solution-card-icon svg {
        width: 42px;
        height: 42px;
    }

    /* Mobile: Always show description */
    .solution-card-desc {
        opacity: 1 !important;
    }

    /* Mobile: Always show Learn More button */
    .solution-card-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        position: absolute;
        bottom: 5px;
        left: auto;
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Disable hover scale on mobile — keep translateY(-50%) so icon stays vertically centered */
    .solution-card:hover .solution-card-icon {
        transform: translateY(-50%);
    }

    .solution-card:hover .solution-card-icon svg {
        animation: none;
    }
}

/* ========================================
   PARTNERSHIP SECTION
   ======================================== */
.partnership-section {
    position: relative;
    background: var(--tj-color-bg-dark);
    overflow: hidden;
    padding: 80px 0 100px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.partnership-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header Side-by-Side */
.sec-heading.style-3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 50px;
}

.subtitle-text {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.h5-about-content-right {
    flex: 1;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tj-color-theme-primary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.h5-about-counter {
    display: flex;
    align-items: baseline;
    font-weight: 700;
    line-height: 1;
    color: #fff !important;
    margin: 50px 0 0 0;
    opacity: 1;
    visibility: visible;
}

.h5-about-counter .count {
    color: #fff !important;
    display: inline-block;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}


.h5-about-counter-symbol {
    font-size: 2rem;
    color: var(--tj-color-theme-primary);
    margin-left: 4px;
    font-weight: 500;
}

.partnership-section .sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.2);
    /* Sönük başlangıç rengi */
    margin: 0;
    letter-spacing: -0.01em;
}

.reveal-text {
    background: linear-gradient(to right, #ffffff var(--reveal-progress, 0%), rgba(255, 255, 255, 0.2) var(--reveal-progress, 0%));
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.1s ease;
    /* Smooth gradient shift */
    display: inline;
}

/* TJ Primary Button Style */
.tj-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-bg-dark);
    padding: 6px 6px 6px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    margin-top: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-primary-btn .btn-icon {
    width: 44px;
    height: 44px;
    background: #0b1f1e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tj-primary-btn:hover {
    background: #fff;
    color: #0b1f1e;
}

.tj-primary-btn:hover .btn-icon {
    background: #1db9a5;
    color: #fff;
    transform: rotate(45deg);
}

/* Partner Slider Styles */
.partner-slider {
    margin-top: 20px;
    padding: 30px 60px;
    /* Increased vertical padding to allow cards to move up without clipping */
}

/* Ensure splide track doesn't clip the hover animation */
.partner-slider .splide__track {
    overflow: visible !important;
}

.partner-card {
    position: relative;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    /* Fix for Safari border-radius clipping */
    transform: translateZ(0);
    /* Hardware acceleration for smoother clipping */
}

.partner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.6s ease;
    transform: scale(1.2);
    z-index: 1;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 30, 0.6);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.partner-name {
    position: relative;
    font-size: 24px;
    /* Enlarged font size */
    font-weight: 700;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    z-index: 3;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
    /* Improved text shadow for legibility */
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--tj-color-theme-primary);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 0 25px rgba(var(--tj-color-theme-primary-rgb), 0.25);
}

.partner-card:hover .partner-bg {
    opacity: 0.15;
    transform: scale(1.05);
}

.partner-card:hover .partner-name {
    color: var(--tj-color-theme-primary);
    transform: translateY(-2px);
}

.partner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.partner-card:hover::before {
    opacity: 1;
}



/* Background Shapes */
.partnership-section .bg-shape-1,
.partnership-section .bg-shape-2,
.partnership-section .bg-shape-3 {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.partnership-section .bg-shape-1 {
    top: -50px;
    left: -50px;
    width: 400px;
    opacity: 0.3;
}

.partnership-section .bg-shape-2 {
    bottom: -50px;
    right: -50px;
    width: 350px;
    opacity: 0.3;
}

.partnership-section .bg-shape-3 {
    top: -50px;
    /* Moved up to hang from top */
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 1200px;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1200px) {
    .sec-heading.style-3 {
        gap: 60px;
    }

    .partner-slider {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .sec-heading.style-3 {
        flex-direction: column;
        gap: 30px;
    }

    /* Left align everything on tablet */
    .subtitle-text {
        width: 100%;
        align-items: flex-start;
    }

    .h5-about-counter {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .h5-about-counter .count {
        font-size: 4.5rem;
    }

    .partnership-section .container {
        padding: 0 40px;
    }

    .partnership-section .sec-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }

    .tj-primary-btn {
        margin-top: 30px;
    }

    .partner-slider {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        padding: 60px 0;
        border-radius: 12px;
    }

    .partnership-section .container {
        padding: 0 24px;
    }

    .sec-heading.style-3 {
        gap: 20px;
        margin-bottom: 40px;
    }

    .sub-title {
        font-size: 14px;
    }

    .h5-about-counter {
        margin-top: 20px;
    }

    .h5-about-counter .count {
        font-size: 3rem;
    }

    .h5-about-counter-symbol {
        font-size: 1.5rem;
    }

    /* Smaller title on mobile */
    .partnership-section .sec-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .tj-primary-btn {
        margin-top: 24px;
        padding: 6px 6px 6px 20px;
        font-size: 14px;
        gap: 14px;
    }

    .tj-primary-btn .btn-icon {
        width: 36px;
        height: 36px;
    }

    .partner-slider {
        margin-top: 30px;
        padding: 0;
    }

    .partner-card {
        width: 160px;
        height: 160px;
        /* Square dimensions to ensure perfect circle on hover */
    }

    .partner-name {
        font-size: 18px;
        /* Adjusted for smaller cards */
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .partnership-section {
        padding: 40px 0;
    }

    .partnership-section .container {
        padding: 0 16px;
    }

    .partnership-section .sec-title {
        font-size: 1.3rem;
    }

    .partner-card {
        width: 140px;
        height: 140px;
        /* Keeping them square-ish but slightly smaller */
    }

    .partner-name {
        font-size: 16px;
    }
}

/* ========================================
   STRATEGY SECTION
   ======================================== */
.strategy-section {
    background: #E8F3F2;
    /* Match the page background for contrast around the main white container */
    padding: 30px 0;
}

.strategy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--tj-space-edge);
}

/* Main Heading Box */
.h5-strategy-heading {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.h5-strategy-heading .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1db9a5;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.h5-strategy-heading .sec-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 1100px;
}

/* Cards Grid */
.strategy-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.4;
    margin-bottom: 30px;
    /* Removed inherit to prevent white text issue */
}

/* Card 1: Avatars & Counter */
.avatar-group {
    display: flex;
    margin-bottom: 40px;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    margin-right: -20px;
    background: #eee;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-card-counter {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.counter-val {
    font-size: 72px;
    font-weight: 700;
    color: #1db9a5;
    line-height: 1;
    margin-bottom: 15px;
}

.counter-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Card 2: Chart */
.strategy-card-chart {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
    margin-bottom: 20px;
}

.chart-bars .bar {
    flex: 1;
    max-width: 40px;
    /* Slimmer bars */
    background: #D1ECE9;
    border-radius: 6px;
    height: 0;
    /* Start at 0 for animation */
    transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strategy-card.active .chart-bars .bar {
    height: var(--height);
    /* Animate to target height when card is revealed */
}

.chart-bars .bar.highlight {
    background: #1db9a5;
}

.chart-label {
    color: #1db9a5;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card 3: Dark Theme */
.strategy-card-dark {
    background: linear-gradient(rgba(11, 31, 30, 0.9), rgba(11, 31, 30, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.strategy-card-dark .strategy-card-title {
    color: #fff;
}

.strategy-card-dark .strategy-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.strategy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1db9a5;
    color: #0b1f1e;
}

/* Responsive */
@media (max-width: 1200px) {
    .strategy-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .h5-strategy-heading {
        padding: 40px;
    }

    .strategy-cards-row {
        grid-template-columns: 1fr;
    }

    .counter-val {
        font-size: 56px;
    }
}

@media (max-width: 600px) {
    .h5-strategy-heading {
        padding: 30px 20px;
    }
}

/* ========================================
   SCROLL TO TOP PROGRESS
   ======================================== 
.progress-wrap {
    position: fixed;
    right: 40px;
    bottom: 40px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 185, 165, 0.2);
}

.progress-wrap::after {
    display: none;
}

.progress-circle path {
    fill: none;
    stroke: #1db9a5;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.progress-wrap .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 700;
    color: #0b1f1e;
    transition: all 0.3s ease;
}

.progress-wrap .progress-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: #1db9a5;
    transition: all 0.3s ease;
}

.progress-wrap:hover .progress-text {
    opacity: 0;
    transform: translate(-50%, -70%);
}

.progress-wrap:hover .progress-arrow {
    opacity: 1;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 50px;
        width: 50px;
    }

    .progress-wrap .progress-text {
        font-size: 10px;
    }
}*/

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: #0b1f1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(29, 185, 165, 0.1);
    border-top: 3px solid #1db9a5;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   MODERN ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Split Text Animation */
.split-text {
    display: block;
    overflow: visible;
}

.split-word {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    line-height: inherit;
    /* Ensure word inherits heading's line height */
}

.split-char {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: transform;
}

.split-text.active .split-char {
    transform: translateY(0);
}

/* Staggered Delay Helpers */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

/* ========================================
   SUBPAGE HEADER HIDING & SPACING
   ======================================== */
tj-about-header,
tj-services-header,
tj-portfolio-header,
tj-contact-header {
    display: none !important;
}

/* Ensure first content section clears the floating navbar (total ~100px from top) */
tj-services-content,
tj-contact-info {
    padding-top: 15px !important;
    margin-top: 0 !important;
}

@media (max-width: 991px) {

    tj-services-content,
    tj-contact-info {
        padding-top: 10px !important;
    }
}

tj-about-choose,
tj-portfolio-content {
    padding-top: 100px !important;
    margin-top: 0 !important;
}

@media (max-width: 991px) {

    tj-about-choose,
    tj-portfolio-content {
        padding-top: 70px !important;
    }
}