/*
 * Yeniden Teknoloji - High-Tech Modern Redesign 2026
 * Primary Color: #65b330
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --primary: #65b330;
    --renk1: var(--primary);
    --renk2: var(--primary);
    --primary-dark: #4f8e25;
    --primary-soft: rgba(101, 179, 48, 0.1);
    --secondary: #101820;
    --secondary-light: #1e293b;

    --bg-dark: #0a0f14;
    --bg-card: #151f2b;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --grad-primary: linear-gradient(135deg, #65b330 0%, #3e7b1a 100%);
    --grad-dark: linear-gradient(135deg, #101820 0%, #06090c 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(101, 179, 48, 0.2);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.3);

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}
::selection{
    background: var(--primary);
    color: white;
}
a:hover{
    text-decoration: none;
}
/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.preloader-content {
    text-align: center;
    width: 250px;
}

.preloader-logo {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.preloader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-gray);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
}

a { text-decoration: none; transition: var(--transition); color: var(--primary); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; transition: var(--transition); }

.section-space { padding: 90px 0; }
@media (max-width: 991px) { .section-space { padding: 80px 0; } }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; border: 2px solid var(--bg-dark); }

/* Buttons */
.btn {
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-sm { padding: 10px 24px; font-size: 13px; }

.btn-style-1 {
    background: var(--grad-primary);
    color: white !important;
    box-shadow: var(--shadow-lg);
}
.btn-style-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(101, 179, 48, 0.4);
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
}
.btn-ghost:hover {
    background: var(--primary);
    color: white !important;
}

.btn-white {
    background: white;
    color: var(--primary) !important;
}
.btn-white:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-5px);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white !important;
}
.btn-outline-white:hover {
    background: white;
    color: var(--primary) !important;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

header.is-sticky {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(101, 179, 48, 0.1);
}

.navbar-brand {
    position: relative;
    display: inline-block;
}
.navbar-brand .logo-1,
.navbar-brand .logo-2 {
    display: block;
}
.navbar-brand .logo-2 {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.navbar-brand img { height: 55px; }
header.is-sticky .navbar-brand img { height: 45px; }

.header-nav .nav-link {
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px !important;
    position: relative;
}

header.is-sticky .header-nav .nav-link { color: var(--secondary); }

.header-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.header-nav .nav-link:hover::after,
.header-nav .nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.header-nav .nav-link:hover { color: var(--primary) !important; }

/* Dropdown Hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    border: none;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: 12px;
    padding: 15px 0;
    min-width: 220px;
    margin-top: 10px;
}

.dropdown-item {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 25px;
    color: var(--secondary);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-soft);
    color: var(--primary);
    padding-left: 30px;
}

/* Hero Slider */
.hero-2026 {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 24, 32, 0.9) 0%, rgba(16, 24, 32, 0.4) 60%, transparent 100%);
    z-index: 2;
}

.hero-container { position: relative; z-index: 3; }

.hero-panel { max-width: 800px; color: white; }

.hero-title {
    font-size: clamp(40px, 6vw, 85px);
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 35px;
}

/* Sections */
.section-head { margin-bottom: 70px; text-align: center; }
.section-head.text-left { text-align: left; }

.section-eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 12px;
    display: block;
}

.section-title { font-size: clamp(24px, 4vw, 42px); margin-bottom: 20px; font-weight: 800; }
.breadcrumb-item {
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb-item a { color: var(--text-muted); }
.breadcrumb-item.active { color: var(--primary); }

/* Cards */
.card-modern {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-soft);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Service Card 2026 */
.service-card-2026 {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card-2026:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-soft);
}

.service-media-2026 { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-media-2026 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.service-card-2026:hover .service-media-2026 img { transform: scale(1.1); }

.service-badge-2026 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.service-body-2026 {
    padding: 10px 25px;
    min-height: 110px; }
.service-body-2026 h5 { font-size: 16px; margin-bottom: 15px; transition: var(--transition); font-weight: 700; }
.service-card-2026:hover h5 { color: var(--primary); }
.service-body-2026 p { color: var(--text-muted); font-size: 15px; margin-bottom: 25px; }

/* Stats Avant */
.stats-avant {
    background: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.stats-avant::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(101, 179, 48, 0.15), transparent 50%);
    pointer-events: none;
}

.stat-avant {
    padding: 50px 40px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.stat-avant:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-avant-number { font-size: 55px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-avant-label { color: var(--text-white); opacity: 0.8; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; font-weight: 600; }

/* Hakkımızda Modern */
.about-visual-modern {
    position: relative;
    padding-bottom: 50px;
    padding-right: 50px;
}

.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    border: 8px solid white;
    border-radius: 24px;
    z-index: 5;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -30px;
    background: var(--grad-primary);
    color: white;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 6;
}

.exp-number { font-size: 36px; font-weight: 800; line-height: 1; }
.exp-text { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.about-content-modern {
    position: relative;
}

.about-lead {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-lead p { margin-bottom: 20px; }

.modern-feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.m-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.m-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.m-feature-item:hover .m-feature-icon {
    background: var(--primary);
    color: white;
    transform: rotate(15deg);
}

.m-feature-text h5 { font-size: 18px; margin-bottom: 5px; }
.m-feature-text p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; }

/* Sidebar Modern */
.sidebar-modern {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.widget-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-soft);
    position: relative;
}

.sidebar-links li {
    margin-bottom: 8px;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--bg-gray);
    border-radius: 12px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.sidebar-links li.active a,
.sidebar-links li a:hover {
    background: var(--primary);
    color: white !important;
}

.sidebar-links li a i { font-size: 12px; opacity: 0.5; }

/* Forms Modern */
.modern-form .form-group { margin-bottom: 20px; }
.modern-form label { color: var(--secondary); margin-bottom: 10px; display: block; }
.modern-input {
    background: var(--bg-gray);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 15px 20px;
    height: auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    transition: var(--transition);
}
.modern-input:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    outline: none;
}
select.modern-input { height: 54px; }

/* CTA Modern */
.cta-2026-modern { background: var(--bg-gray); }

.cta-box-modern {
    background: var(--grad-dark);
    border-radius: var(--radius-xl);
    padding: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-bg-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(101, 179, 48, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-kicker {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
}

.z-10 { z-index: 10; }

/* Swiper Styles */
.swiper-button-next, .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: white !important;
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; font-weight: 800; }

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1) translateY(-50%);
}

.swiper-pagination-bullet { background: white; opacity: 0.5; width: 12px; height: 12px; transition: var(--transition); }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; width: 30px; border-radius: 10px; }

/* Slider Buttons Custom */
.slider-btn-next, .slider-btn-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}
.slider-btn-prev { left: 40px; }
.slider-btn-next { right: 40px; }

/* Footer */
footer {
    background: #080c10;
    color: #94a3b8;
    padding-top: 100px;
}

.footer-logo { height: 60px; margin-bottom: 30px; }

.footer-card h3 { color: white; font-size: 20px; margin-bottom: 30px; position: relative; padding-bottom: 15px; }
.footer-card h3:after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: #94a3b8; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.footer-links a:before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-links a:hover:before { transform: translateX(3px); }

.footer-social { display: flex; gap: 15px; margin-top: 30px; list-style: none; }
.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-5px) rotate(10deg); }

.footer-bottom {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Utils */
.glass-morphism {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.rounded-2xl { border-radius: 24px; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-visual-modern { padding-bottom: 30px; padding-right: 0; margin-bottom: 60px; }
    .about-img-sub { width: 180px; }
    .experience-badge { padding: 20px; left: 0; top: 20px; }
    .cta-box-modern { padding: 40px 30px; }
    .slider-btn-next, .slider-btn-prev { display: none; }
}

.partners-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.partners-marquee {
    width: 100%;
    overflow: hidden;
}
.partners-marquee__track {
    display: flex;
    width: max-content;
    animation: partners-marquee 28s linear infinite;
}
.partners-marquee__group {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 22px 36px;
}
.partners-logo {
    flex: 0 0 auto;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-logo img {
    height: 48px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}
.partners-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}
@keyframes partners-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 991px) {
    .partners-marquee__group { gap: 44px; padding: 18px 24px; }
    .partners-logo img { height: 40px; }
}
@media (max-width: 575px) {
    .partners-marquee__group { gap: 28px; padding: 14px 18px; }
    .partners-logo img { height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
    .partners-marquee__track { animation: none; }
}
.sayfaHeader .header-nav .nav-link{
    color: var(--primary);
}

footer .footer-alt-bg {
    border-top: 8px solid var(--renk2);
    background: #fff;
    color: #fff;
    font-size: 15px;
    position: relative;
    z-index: 30;
    padding-bottom: 8px
}

.footer-alt-bg::before{
    content: "";
    width: 100%;
    height: 5px;
    background-color: white;
    position: absolute;
    top: -10px;
    left: 0;
}
.footer-alt{
    position: relative;
    padding-left: 74px;
}
.footer-alt::before{
    content: "";
    position: absolute;
    background-image: url("../img/f-icon.png");
    width: 74px;
    height: 74px;
    left: 0;
    bottom: 0;
}

footer .footer-alt-bg .footer-alt-ic {
    margin-right: auto
}

footer .footer-alt-bg p {
    padding: .8em 0 .4em;
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: #555;
    text-align: right
}

footer .footer-Link{
    transition: all .4s;
}

footer .footer-Link:hover{
    padding-left: 10px;
}

footer .footer-ust-img {
    position: absolute;
    width: 100%;
    height: 55px;
    top: -40px;
    transform: perspective(1px)
}

footer .hakanbt-logo:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -44px;
    left: -16px;
    border-style: solid;
    border-width: 0 30px 35px 30px;
    border-color: transparent transparent #fff transparent
}

footer .hakanbt-logo:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: -34px;
    left: -6px;
    border-style: solid;
    border-width: 0 20px 24px 20px;
    border-color: transparent transparent var(--primary) transparent
}

footer .hakanbt-logo {
    position: absolute;
    bottom: -14px;
    left: 15px;
    height: 35%;
    width: 100%
}

.hakanbt {
    width: 28px !important;
    height: 25px !important;
    overflow: hidden !important;
    position: relative !important;
    margin: 0 !important;
    transition: all .5s ease-in-out .1s !important
}

.hakanbt img {
    max-width: none !important;
    user-select: none;
}

.hakanbt:hover {
    width: 125px !important
}
.footer-links li i{
    color: var(--primary);
    font-size: 20px;
}
.sayfa-detay-img{
    position: relative;
    z-index: 5;
}

/* HC-OFFCANVAS */
.hc-nav-trigger {
    position: fixed;
    right: 20px;
    top: 30px;
    z-index: 9999;
}

.hc-nav-trigger span {
    background-color: var(--primary);
}


.hc-offcanvas-nav.nav-levels-overlap .nav-content::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    right: 0;
    opacity: .4;
    background-repeat: no-repeat;
    background-position-y: bottom;
}

.hc-offcanvas-nav .nav-close-button span::after, .hc-offcanvas-nav .nav-close-button span::before {
    width: 10px;
    height: 10px;
    margin-top: -5px;
}

.hc-offcanvas-nav .nav-title + .nav-close a:not(.has-label) {
    top: 15px;
    right: 0;
}

.hc-offcanvas-nav .nav-close-button span::before {
    margin-left: -11px;
}

.fancybox__container {
    z-index: 9999;
}
main{
    overflow: hidden;
}
.hc-offcanvas-nav.nav-levels-overlap .nav-content {
    background-color: white;
}

.canvasSocial li i{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    outline: 1px solid var(--primary);
    outline-offset: 4px;
    color: white;
    margin-right: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}
.canvasSocial li{
    margin: 15px 0;
    display: flex;
    justify-content: start;
    align-items: center;
}
.canvasSocial li a{
    display: flex !important;
    justify-content: start;
    align-items: center;
}
@media screen and (min-width: 992px) {
    .service-body-2026 h5 {
        min-height: 40px;
    }
    .service-body-2026 p {
        min-height: 80px;
    }
}
@media screen and (max-width: 450px) {
    .service-body-2026 h5 {
        font-size: 14px;
        min-height: 70px;
    }
    .btn-sm {
        padding: 8px 14px;
        font-size: 12px;
    }
    .service-body-2026 p{
        display: none;
    }
    .service-body-2026 {
        padding: 15px;
    }
    .sayfa-detay-img {
        width: 100% !important;
    }
    .cta-btns{
        max-width: 200px;
        margin: 0 auto;
    }
    .cta-btns a{
        max-width: 200px;
        margin: 5px auto;
    }
}