:root {
    --primary-color: #322F81;
    --secondary-color: #2cc5f4;
    --text-color: #334155;
    --heading-color: #1e293b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 25px;
}

header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    transition: all 0.4s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 0;
    position: relative;
}

header:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
    opacity: 1 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.dropdown,
.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 210px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.lang-dropdown {
    left: auto;
    right: 0;
    min-width: 160px;
    transform: translateY(10px);
}

.nav-item:hover .dropdown,
.lang-wrapper:hover .lang-dropdown,
.lang-wrapper.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    list-style: none;
}

.lang-wrapper:hover .lang-dropdown,
.lang-wrapper.active .lang-dropdown {
    transform: translateY(0);
}

.dropdown a,
.lang-dropdown a {
    display: block;
    padding: 10px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color) !important;
}

.dropdown a:hover,
.lang-dropdown a:hover {
    color: var(--secondary-color) !important;
    background: var(--light-bg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-wrapper {
    position: relative;
}

.lang-btn {
    background: var(--light-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.fa-chevron-down {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .fa-chevron-down,
.lang-wrapper:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.8rem;
    /* color: white; */
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
    transition: all 0.3s ease;
}

header.scrolled .mobile-menu-toggle {
    color: var(--primary-color);
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

.mobile-only-action {
    display: none;
}

@media (max-width: 992px) {
    header .container {
        position: relative;
    }

    .nav-item:hover .dropdown {
        transform: none;
    }

    .lang-wrapper:hover .lang-dropdown,
    .lang-wrapper.active .lang-dropdown {
        transform: translateY(0);
        right: 0;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(145deg, #1e1b4b 0%, #0f172a 100%) !important;
        flex-direction: column;
        align-items: stretch !important;
        padding: 20px !important;
        gap: 6px !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6) !important;
        border-top: 3px solid var(--secondary-color);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0 0 24px 24px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-links li {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-item {
        width: 100% !important;
    }

    header .nav-link,
    header:not(.scrolled) .nav-link,
    header.scrolled .nav-link {
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.03);
        width: 100% !important;
        justify-content: space-between !important;
        padding: 16px 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 14px !important;
        opacity: 1 !important;
        display: flex !important;
        align-items: center !important;
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.3px;
        transition: all 0.3s ease !important;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--secondary-color) !important;
        background: rgba(44, 197, 244, 0.12) !important;
        border-color: rgba(44, 197, 244, 0.3) !important;
        transform: translateX(5px);
    }

    .nav-link::after {
        display: none !important;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.25) !important;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100% !important;
        margin: 0 !important;
        border-radius: 14px !important;
    }

    .dropdown.open {
        max-height: 1000px;
        margin-top: 6px !important;
        padding: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .dropdown a {
        display: block !important;
        padding: 14px 20px !important;
        color: rgba(255, 255, 255, 0.85) !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
    }

    .dropdown li:last-child a {
        border-bottom: none !important;
    }

    .dropdown a:hover,
    .dropdown a.active {
        background: rgba(44, 197, 244, 0.15) !important;
        color: var(--secondary-color) !important;
        padding-left: 26px !important;
    }

    .header-actions {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .header-actions .btn-nav-teklif {
        display: none;
    }

    .mobile-only-action {
        display: block !important;
        width: 100% !important;
        margin-top: 15px !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .btn-mobile-teklif {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 16px 20px !important;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #0284c7 100%) !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        border-radius: 50px !important;
        box-shadow: 0 10px 25px rgba(44, 197, 244, 0.3) !important;
        letter-spacing: 1px !important;
    }
}

.btn {
    border: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 10px 25px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    padding: 14px 35px;
}

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(50, 47, 129, 0.75) 100%);
    z-index: 1;
}

.slide .container {
    position: relative;
    z-index: 2;
    color: white;
}

.slide h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide span {
    color: var(--secondary-color);
}

.slide p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 700px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.active h1,
.active p {
    opacity: 1;
    transform: translateY(0);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
    left: 40px;
}

.arrow-next {
    right: 40px;
}

.slider-nav {
    position: absolute;
    right: 40px;
    top: 90%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-dot {
    width: 4px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary-color);
    height: 60px;
}

.scroll-down-wrap {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    display: block;
}

.mouse-dot {
    width: 4px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.services {
    padding: 120px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 197, 244, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px -10px rgba(50, 47, 129, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(44, 197, 244, 0.15);
    border-color: rgba(44, 197, 244, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 0;
    height: 4px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(50, 47, 129, 0.04);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-box {
    background: var(--primary-color);
    transform: rotate(-5deg);
    box-shadow: 0 10px 20px rgba(50, 47, 129, 0.2);
}

[dir="rtl"] .service-card:hover .service-icon-box {
    transform: rotate(5deg);
}

.service-icon-box i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon-box i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-number {
    position: absolute;
    top: 20px;
    inset-inline-end: 30px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
    transition: all 0.4s ease;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
}

.service-card:hover .service-number {
    color: rgba(44, 197, 244, 0.08);
    transform: scale(1.1) rotate(10deg);
}

[dir="rtl"] .service-card:hover .service-number {
    transform: scale(1.1) rotate(-10deg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

[dir="rtl"] .service-link i {
    transform: rotate(180deg);
}

[dir="rtl"] .service-card:hover .service-link i {
    transform: rotate(180deg) translateX(5px);
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .slider-nav {
        display: none;
    }

    .slider-arrow {
        top: auto;
        bottom: 35px;
        transform: none;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.15);
    }

    .slider-arrow:hover {
        transform: scale(1.08);
    }

    .arrow-prev {
        left: auto;
        right: 75px;
    }

    .arrow-next {
        right: 20px;
    }

    .scroll-down-wrap {
        left: 30px;
        transform: none;
        bottom: 35px;
    }
}

.portfolio {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.status-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 50px;
}

.status-btn {
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-btn:hover,
.status-btn.active {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s ease;
}

.status-btn:hover .dot,
.status-btn.active .dot {
    transform: scale(1.2);
}

.status-btn[data-status="completed"] .dot {
    background: #10b981;
}

.status-btn[data-status="ongoing"] .dot {
    background: #f59e0b;
}

.status-btn[data-status="new"] .dot {
    background: #3b82f6;
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 8px;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.status-badge.completed {
    background: rgba(16, 185, 129, 0.95);
}

.status-badge.ongoing {
    background: rgba(245, 158, 11, 0.95);
}

.status-badge.new {
    background: rgba(59, 130, 246, 0.95);
}

.filter-btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--light-bg);
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(50, 47, 129, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
    align-items: start;
}

@media (max-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item.add-project {
    background: #f8fafc;
    border: 2px dashed var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease !important;
    box-shadow: none;
    text-decoration: none;

    cursor: pointer;
    opacity: 1;

}

.portfolio-item.add-project:hover {
    background: var(--white);
    border-color: var(--primary-color);
    border-style: solid;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) !important;
}

.add-icon {
    justify-self: center;
    width: 80px;
    height: 80px;
    background: rgba(44, 197, 244, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item.add-project:hover .add-icon {
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.add-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.portfolio-item.add-project:hover .add-icon i {
    color: var(--white);
}

.add-content {
    color: var(--text-color);
    width: 100%;
}

.add-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.add-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-sm {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 197, 244, 0.3);
}

.portfolio-item.add-project:hover .btn-sm {
    background: var(--primary-color);
    box-shadow: 0 8px 20px rgba(50, 47, 129, 0.3);
    transform: scale(1.05);
}

.tech-stack {
    padding: 60px 0;
    background: #f8fafc;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-wrapper {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.tech-item {
    width: 250px;
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.tech-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.tech-item i {
    font-size: 3.5rem;
    color: #333;

}

.tech-item:hover .fa-react {
    color: #61DAFB;
}

.tech-item:hover .fa-node-js {
    color: #339933;
}

.tech-item:hover .fa-python {
    color: #3776AB;
}

.tech-item:hover .fa-aws {
    color: #FF9900;
}

.tech-item:hover .fa-docker {
    color: #2496ED;
}

.tech-item:hover .fa-figma {
    color: #F24E1E;
}

.tech-item:hover .fa-android {
    color: #3DDC84;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.process {
    padding: 120px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 60px;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-card {
    background: var(--white);
    padding: 20px 15px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    border-color: var(--secondary-color);
    background: var(--light-bg);
    box-shadow: 0 10px 20px rgba(44, 197, 244, 0.2);
    transform: rotate(10deg);
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #171542 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.stat-item i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: block;
    opacity: 0.8;
}

.counter {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {

    .process-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 576px) {

    .process-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.blog {
    padding: 120px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(50, 47, 129, 0.15);
}

.blog-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1e293b;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.blog-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: var(--secondary-color);
}

footer {
    background: #0f0c29;
    background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    color: white;
    padding-top: 80px;
    margin-top: 0;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

[dir="rtl"] .footer-grid {
    text-align: right;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--secondary-color);
    padding-inline-start: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

[dir="rtl"] .footer-links a i {
    transform: rotate(180deg);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

[dir="rtl"] .footer-contact li {
    text-align: right;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    padding-right: 50px;
    border-radius: 5px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 47, 129, 0.95) 0%, rgba(50, 47, 129, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-tags {
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 5px;
    letter-spacing: 0.5px;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-link {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    top: 25px;
    right: 25px;
    transform: scale(0) rotate(-180deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.portfolio-item:hover .portfolio-link {
    transform: scale(1) rotate(0);
}

.portfolio-link:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 350px;
    }
}

.page-header {
    height: 450px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80") center/cover;
    opacity: 0.15;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.5;
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0;
}

.about-img-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about-img-box img {
    width: 100%;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(44, 197, 244, 0.3);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.values-section {
    background: #f8fafc;
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(44, 197, 244, 0.1);
    color: var(--secondary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.section-badge {
    background: rgba(44, 197, 244, 0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.section-title-alt {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-alt h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.btn-nav-teklif {
    color: white !important;
    font-weight: 800;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 100px 0;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(50, 47, 129, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.team-card:hover .team-social-overlay {
    bottom: 0;
}

.team-social-overlay a {
    color: white;
    font-size: 1.2rem;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.team-info p {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 100px 0;
    align-items: stretch;
}

.vision-box,
.mission-box {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: rgba(44, 197, 244, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

.vm-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.vm-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-choose-us {
    background: var(--light-bg);
    padding: 100px 0;
}

.vm-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vm-stat-item {
    text-align: center;
}

.vm-stat-item h4 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 900;
}

.vm-stat-item p {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 100px 0;
}

.country-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.add-country-card {
    border: 2px dashed var(--secondary-color);
    background: rgba(44, 197, 244, 0.03);
}

.add-country-card .country-flag i {
    color: var(--secondary-color);
}

.add-country-card .btn {
    margin-top: 15px;
}

.country-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.country-flag {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.country-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.country-card p {
    color: var(--text-color);
    font-size: 0.95rem;
}

.content-page-section {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 800;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-content li {
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.6;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 100px 0;
}

.venture-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.venture-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.venture-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.venture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.venture-card:hover .venture-img img {
    transform: scale(1.1);
}

.venture-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.venture-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.venture-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.venture-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.venture-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.venture-link:hover {
    gap: 15px;
}

.ventures-cta {
    padding: 100px 0;
}

.add-venture-card {
    border: 2px dashed var(--secondary-color);
    background: rgba(44, 197, 244, 0.02) !important;
}

.cta-img {
    background: linear-gradient(135deg, var(--primary-color) 0%, #171542 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(44, 197, 244, 0.3);
}

@media (max-width: 768px) {
    .ventures-grid {
        grid-template-columns: 1fr;
    }
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 100px 0;
}

.service-detail-card {
    background: var(--white);
    padding: 50px;
    border-radius: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-color);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: rgba(44, 197, 244, 0.1);
    color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.service-detail-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-detail-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-list {
    list-style: none;
    margin-top: auto;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-detail-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        padding: 35px;
    }
}

.service-detail-wrapper {
    padding: 100px 0;
}

.service-detail-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.service-main-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.service-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-featured-img {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.service-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.service-sidebar-widget {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    font-weight: 700;
    color: var(--primary-color);
    transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-links a i {
    font-size: 0.8rem;
}

.service-cta-widget {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.service-cta-widget h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-cta-widget p {
    opacity: 0.9;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .service-detail-main {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

.advanced-filters {
    padding: 40px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-select {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.custom-select:focus {
    border-color: var(--secondary-color);
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding-bottom: 100px;
}

.project-card-v2 {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.project-card-v2:hover {
    transform: translateY(-10px);
}

.project-img-v2 {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.project-badge-v2 {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
}

.project-info-v2 {
    padding: 25px;
}

.project-meta-v2 {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.project-info-v2 h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-info-v2 p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advanced-filters {
        padding: 25px;
        flex-direction: column;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Pagination Styles */
.custom-pagination-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.page-item {
    margin: 0;
    list-style: none;
}

.page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    cursor: pointer;
}

.page-link i,
.page-link svg {
    font-size: 0.85rem;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

.page-item:not(.disabled) .page-link:hover,
.page-item.active .page-link {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(50, 47, 129, 0.25);
}

.page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
    background: #f1f5f9;
    border-color: #e2e8f0;
    cursor: not-allowed;
}

/* Global Reset for Laravel Default Tailwind Pagination if rendered */
nav[role="navigation"] svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

/* Project Detail Page Styles */
.project-detail-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.project-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.project-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.project-hero-content {
    position: relative;
    z-index: 2;
}

.project-meta-top {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.project-meta-top span {
    background: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-detail-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.project-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 25px;
}

.summary-item label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.summary-item content {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.project-body {
    padding: 100px 0;
    background: #fbfcfe;
}

/* Refined Project Content Styles */
.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.project-main-text h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 900;
}

.challenge-box {
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--secondary-color);
    margin: 40px 0;
}

.challenge-box h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.project-image-showcase {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
}

.showcase-item {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.showcase-item:hover {
    transform: scale(1.02);
}

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

.showcase-main {
    grid-column: 1 / 10;
    grid-row: 1 / 10;
}

.showcase-sub {
    grid-column: 4 / 13;
    grid-row: 5 / 13;
    z-index: 3;
    border: 10px solid white;
}

.tech-stack-section {
    margin-top: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.home-tech-stack .tech-item {
    background: transparent;
    padding: 20px;
    width: 250px;
    flex-shrink: 0;
}

.project-tech-stack .tech-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-item {
    background: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.home-tech-stack .tech-item:hover {
    transform: translateY(-5px);
}

.project-tech-stack .tech-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.home-tech-stack .tech-item i {
    font-size: 4.5rem;
    color: var(--secondary-color);
    filter: grayscale(1);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.project-tech-stack .tech-item i {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.home-tech-stack .tech-item:hover i {
    filter: grayscale(0);
    opacity: 1;
}

.tech-item span {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.project-results {
    background: var(--primary-color);
    padding: 80px 0;
    color: white;
    border-radius: 40px;
    margin-bottom: 100px;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.result-item h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.result-item p {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 700;
}

@media (max-width: 992px) {
    .project-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-content-grid {
        grid-template-columns: 1fr;
    }

    .project-detail-hero {
        height: auto;
        padding: 150px 0 80px;
    }
}

@media (max-width: 576px) {
    .project-summary-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Ultra Premium Project Detail Enhancements */
.project-detail-hero {
    height: 85vh;
}

.project-hero-content {
    max-width: 1000px;
}

.project-hero-bg img {
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.project-summary-float {
    margin-top: -100px;
    z-index: 10;
    position: relative;
    padding-bottom: 50px;
}

.process-section {
    padding: 120px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: #f8fafc;
    border-radius: 25px;
    transition: var(--transition);
}

.process-step:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(44, 197, 244, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.testimonial-block {
    background: #f1f5f9;
    padding: 120px 0;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 40px;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details {
    text-align: left;
}

.client-details h5 {
    font-weight: 800;
    color: var(--primary-color);
}

.client-details p {
    font-size: 0.9rem;
    color: #64748b;
}

.next-project-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e1b4b 100%);
    padding: 100px;
    border-radius: 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.next-project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1555421689-491a97ff2040?auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.2;
    filter: grayscale(1);
    transition: 0.5s;
}

.next-project-card:hover::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.next-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .project-detail-hero {
        height: 60vh;
    }
}

/* Blog Page Dedicated Styles */
.blog-dedicated {
    padding: 100px 0;
    background: #fbfcfe;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.featured-blog {
    margin-bottom: 60px;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow);
    display: flex;
    transition: var(--transition);
}

.featured-blog:hover {
    transform: translateY(-5px);
}

.featured-img {
    flex: 1.2;
    overflow: hidden;
}

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

.featured-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .blog-category {
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
}

.featured-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.7;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    outline: none;
    transition: var(--transition);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input:focus {
    border-color: var(--secondary-color);
    background: white;
}

.category-list {
    list-style: none;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.category-count {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-info h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-info h4 a:hover {
    color: var(--secondary-color);
}

.recent-post-info span {
    font-size: 0.8rem;
    color: #94a3b8;
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .featured-blog {
        flex-direction: column;
    }

    .featured-img {
        height: 300px;
    }
}

/* Ultra Modern Editorial Blog Styles */
.blog-hero-split {
    height: 70vh;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--primary-color);
    overflow: hidden;
}

.blog-hero-info {
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.blog-hero-image {
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-filters-bar {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 10px 25px;
    border-radius: 50px;
    background: #f8fafc;
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 197, 244, 0.2);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    padding: 80px 0;
}

.mag-card {
    grid-column: span 4;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border-color: var(--secondary-color);
}

.mag-img {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.mag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mag-card:hover .mag-img img {
    transform: scale(1.08);
}

.mag-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mag-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(44, 197, 244, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    align-self: flex-start;
    display: inline-block;
}

.mag-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.45;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.mag-card:hover .mag-title {
    color: var(--secondary-color);
}

.mag-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.mag-footer {
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.mag-date {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mag-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.mag-card:hover .mag-read-more {
    color: var(--secondary-color);
    gap: 10px;
}

@media (max-width: 1200px) {
    .blog-hero-split {
        padding: 50px;
    }

    .blog-hero-info {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .blog-hero-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .blog-hero-image {
        display: none;
    }

    .mag-card {
        grid-column: span 6;
    }

    .blog-filters-bar {
        padding: 16px 0;
    }

    .filter-tags {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 10px;
        padding: 4px 15px 10px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .filter-tags::-webkit-scrollbar {
        display: none;
    }

    .filter-tag {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .mag-card {
        grid-column: span 12;
    }

    .blog-filters-bar {
        padding: 12px 0;
        top: 65px;
    }

    .filter-tags {
        gap: 8px;
        padding: 12px 12px 8px 12px;
    }

    .filter-tag {
        padding: 7px 16px;
        font-size: 0.82rem;
    }
}

/* Contact Page Dedicated Styles */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    padding: 100px 0;
}

.contact-info-panel {
    background: var(--primary-color);
    color: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form-panel {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    color: #64748b;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background: white;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 197, 244, 0.3);
}

.map-section {
    padding-bottom: 100px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }
}

.projects-count {
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-color);
    text-align: right;
}

.no-results {
    display: none;
    text-align: center;
    padding: 80px 0;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.gallery-wrap {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 4/3;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(50, 47, 129, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    /* slight zoom on image */
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 47, 129, 0.9) 0%, rgba(50, 47, 129, 0.2) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
    transform: scale(0.5) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) translateY(0);
}

.gallery-caption {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Envato Themes Page Styles */
.theme-wrap {
    padding: 80px 0;
    background: #f8f9fa;
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.theme-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.theme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(50, 47, 129, 0.15);
}

.theme-img-wrap {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.theme-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.theme-card:hover .theme-img-wrap img {
    transform: scale(1.05);
}

.theme-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(50, 47, 129, 0.95), rgba(50, 47, 129, 0.7));
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.theme-card:hover .theme-overlay {
    opacity: 1;
}

.theme-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    opacity: 0;
}

.theme-card:hover .theme-btn {
    transform: translateY(0);
    opacity: 1;
}

/* Delay for staggered button entrance */
.theme-card:hover .btn-preview {
    transition-delay: 0.1s;
}

.theme-card:hover .btn-buy {
    transition-delay: 0.15s;
}

.btn-preview {
    background: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
}

.btn-preview:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-buy {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-buy:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.theme-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.theme-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.theme-category {
    background: rgba(44, 197, 244, 0.1);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f59e0b;
}

.theme-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-title a {
    color: inherit;
    text-decoration: none;
}

.theme-title:hover {
    color: var(--secondary-color);
}

.theme-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.theme-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.theme-rating {
    display: flex;
    gap: 3px;
    color: #f59e0b;
}

.theme-sales {
    display: flex;
    align-items: center;
    gap: 5px;
}

.theme-sales i {
    color: var(--secondary-color);
}

.quote-wrap {
    padding: 80px 0;
    background: #f8f9fa;
}

.step-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-progress {
    position: absolute;
    top: 25px;
    left: 0;
    height: 2px;
    background: var(--secondary-color);
    z-index: 2;
    transition: width 0.4s ease;
    width: 0%;
}

.step-indicator {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step-indicator.active {
    color: var(--primary-color);
}

.step-indicator.active .step-icon {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 0 15px rgba(44, 197, 244, 0.3);
}

.step-indicator.completed {
    color: var(--primary-color);
}

.step-indicator.completed .step-icon {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Type Cards Selection */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.type-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.type-card:hover {
    border-color: var(--secondary-color);
    background: rgba(44, 197, 244, 0.05);
    transform: translateY(-5px);
}

.type-card.selected {
    border-color: var(--primary-color);
    background: rgba(50, 47, 129, 0.05);
}

.type-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.type-card.selected i {
    color: var(--secondary-color);
}

.type-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.type-card p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(44, 197, 244, 0.1);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-label:hover {
    background: #f8f9fa;
}

.option-label input[type="radio"],
.option-label input[type="checkbox"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-color);
}

/* Summary & Price */
.summary-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
    padding-bottom: 12px;
    border-bottom: 1px dashed #cbd5e1;
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.price-display {
    background: linear-gradient(135deg, var(--primary-color), #232066);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(50, 47, 129, 0.2);
}

.price-display h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Buttons */
.step-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-prev {
    background: #f1f5f9;
    color: #475569;
    border: none;
}

.btn-prev:hover {
    background: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .step-container {
        padding: 20px;
    }

    .step-indicator span {
        font-size: 0.8rem;
    }

    .price-display .amount {
        font-size: 2.2rem;
    }
}

.project-main-text h2 {
    color: var(--p-navy);
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 2.2rem;
    line-height: 1.2;
}

.project-main-text h3 {
    color: var(--p-cyan);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.project-main-text p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.challenge-box {
    background: rgba(50, 47, 129, 0.04);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--p-cyan);
    margin: 40px 0;
}

.challenge-box h3 {
    margin-top: 0;
    color: var(--p-navy) !important;
    font-size: 1.4rem;
}

.tech-stack-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-100);
}

.tech-stack-section h4 {
    color: var(--p-navy);
    font-weight: 800;
    margin-bottom: 20px;
}

.tech-grid-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.tech-grid-list li {
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: var(--p-navy);
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
}

.tech-grid-list li:hover {
    transform: translateY(-3px);
    border-color: var(--p-cyan);
    color: var(--p-cyan);
}

/* Layout & Showcase Fix */
.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.project-showcase {
    position: relative;
    height: 600px;
    max-height: 700px;
}

.showcase-item {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: 0.5s;
    border: 8px solid #fff;
    max-height: 500px;
}

.showcase-main {
    width: 85%;
    top: 0;
    left: 0;
    z-index: 1;
}

.showcase-sub {
    width: 75%;
    bottom: 0;
    right: 0;
    z-index: 2;
    transform: translate(10%, 10%);
}

.showcase-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.showcase-item:hover {
    transform: scale(1.02) translateY(-10px);
    z-index: 5;
}

@media (max-width: 992px) {
    .project-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-showcase {
        height: 450px;
        margin-top: 30px;
    }

    .showcase-item {
        max-height: 350px;
    }

    .showcase-item img {
        height: 350px;
    }

    .showcase-main {
        width: 90%;
    }

    .showcase-sub {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .project-detail-hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .next-project-card h2 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    .project-summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 15px;
    }

    .summary-item label {
        font-size: 0.7rem;
    }

    .summary-item content {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .project-detail-hero h1 {
        font-size: 1.8rem !important;
    }

    .next-project-card {
        padding: 40px 20px !important;
    }

    .next-project-card h2 {
        font-size: 1.6rem !important;
    }

    .project-summary-grid {
        grid-template-columns: 1fr;
    }

    .project-summary-float {
        margin-top: -20px;
        margin-bottom: 20px;
    }

    .project-detail-hero {
        padding: 80px 0 120px 0;
    }
}

/* --- PROFESYONEL PROJE DETAY FIX --- */
.project-summary-float {
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    margin-top: -60px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.project-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px;
}

.summary-item {
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-item:last-child {
    border-right: none;
}

.summary-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--p-cyan);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.summary-item content {
    font-size: 1rem;
    font-weight: 800;
    color: var(--p-navy);
    display: block;
}

@media (max-width: 992px) {
    .project-summary-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px;
    }

    .summary-item {
        border: none;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .project-detail-hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .next-project-card h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .project-summary-float {
        margin-top: -30px !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .project-summary-grid {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    .project-detail-hero h1 {
        font-size: 1.6rem !important;
    }

    .next-project-card {
        padding: 40px 20px !important;
    }

    .project-detail-hero {
        padding: 80px 0 100px 0 !important;
    }
}

@media (max-width: 768px) {
    header {
        padding: 14px 0 !important;
    }

    .logo img {
        height: 36px !important;
        width: auto !important;
    }

    .header-actions {
        gap: 8px !important;
    }

    .lang-btn {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }

    .mobile-menu-toggle {
        font-size: 1.5rem !important;
        margin-left: 8px !important;
    }

    .slide-content {
        padding-bottom: 60px;
    }

    .slide h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
        margin-bottom: 15px !important;
    }

    .slide p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }

    .services-grid,
    .projects-grid,
    .portfolio-grid,
    .services-page-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px !important;
    }

    .slide h1 {
        font-size: 1.7rem !important;
    }

    .slider-arrow {
        width: 38px !important;
        height: 38px !important;
        bottom: 25px !important;
    }

    .arrow-prev {
        right: 62px !important;
    }

    .arrow-next {
        right: 15px !important;
    }

    .scroll-down-wrap {
        left: 20px !important;
        bottom: 25px !important;
    }
}