:root {
    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans",
        sans-serif;
}
body {
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fff;
    --bg-body: #0b0f10;
    --card-bg: #0f1718;
    --muted-text: #9db0b9;
    --text: #eaf4f6;
    --input-bg: #283339;
    --accent: #1193d4;
    --accent-hover: #0d7ab5;
    --header-h: 200px;
    padding-top: var(--header-h);
}
body.education {
    background: #000;
}
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
img {
    width: 100%;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    background-color: #fff;
    color: #000;
}
.header a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    font-weight: 500;
}
.header.scrolled,
.header:hover {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #000000; /* Yazılar siyaha döner */
    padding: 10px 0; /* Hafifçe daralır, şık durur */
}
.header-scrolled {
    display: none;
}
.header.scrolled .header-normal,
.header:hover .header-normal {
    display: none;
}
.header.scrolled .header-scrolled,
.header:hover .header-scrolled {
    display: block;
    color: #000;
    font-weight: bold;
}
.header .left-side {
    height: 100%;
}
.header .logo-are {
    font-size: 20px;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-center .inline {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 60px;
}
.header .right-side {
    height: 100%;
    display: flex;
    align-items: center;
}
.header-center .item {
    position: relative;
    cursor: pointer;
}
.arrow-icon {
    transition: stroke 0.3s;
}
.header.scrolled .arrow-icon,
.header:hover .arrow-icon {
    stroke: #000;
}
.dropdown-parent {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}
.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    font-size: 14px;
    transition: background 0.2s;
}
.dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #d32f2f !important;
}
.dropdown-parent:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.get-price-header {
    border: 1px solid #000;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
}

.get-price-header:hover {
    color: #000;
}

/* Scrolled modunda buton stili */
.header.scrolled .get-price-header,
.header:hover .get-price-header {
    border-color: #000;
}

.header.scrolled .get-price-header:hover,
.header:hover .get-price-header:hover {
    background-color: #000;
    color: #fff;
}
.about-us-top-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    max-height: 100%;
}
.emre-space-block {
    margin-top: 6%;
}
section.manset-area {
    position: relative;
}
section.manset-area .title {
    font-size: 130px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.dropdown-parent .dropdown-toggle::after {
    display: none;
}
section.manset-area .main-text {
    text-align: center;
    color: #fff;
    font-size: 35px;
}
section.manset-area {
    display: inline-block;
    will-change: transform, opacity;
    transform: translateY(-80px);
    opacity: 0;
    animation: slideDown 4000ms cubic-bezier(0.22, 0.98, 0.36, 1) 200ms forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@keyframes slideDown {
    to {
        transform: translateY(250px);
        opacity: 1;
    }
}
section.manset-area .brand-area {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    will-change: transform, opacity;
    transform: translateY(-80px);
    opacity: 0;
    animation: slideDown 4000ms cubic-bezier(0.22, 0.98, 0.36, 1) 200ms forwards;
}
section.education-area .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}
section.education-area .text {
    font-size: 18px;
    font-weight: 500;
    color: #4f4f4f;
}
.banner-area img {
    max-width: 100%;
    border-radius: 10px;
}
.top-topic {
    color: #1265e9;
    font-size: 12px;
    padding: 7px 20px;
    background: #e2e2e2;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 100px;
    border: 1px solid #e2e2e2;
}
.banner-area .item {
    position: relative;
}
section.education-area .main-text {
    margin-bottom: 25px;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.get-price-banner {
    display: flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    gap: 10px;
}
.tezsan-academy-sv svg {
    display: block;
}
section.education-index-area .item {
    background: #fff;
    border-radius: 20px;
}
section.education-index-area .image-top {
    display: flex;
    justify-content: center;
    width: 100%;
}
section.education-index-area .image-top img {
    width: -webkit-fill-available;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
section.education-index-area .item .text-area {
    padding: 20px;
}
section.education-index-area .item .topt-title {
    color: #1193d4;
    font-size: 16px;
    font-weight: 600;
}
section.education-index-area .item .title {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
section.education-index-area .item .text-area .text {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    letter-spacing: 1px;
}
section.education-index-area .main-text,
section.referances-area .main-text {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}
section.referances-area .main-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
}
section.education-index-area .main-title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}
section.education-index-area .main-text {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}
section.education-index-area a.item-outside {
    text-decoration: unset;
}
.brand-area.marquee {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 0;
}
.marquee__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    --marquee-duration: 28s;
    animation: marquee var(--marquee-duration) linear infinite;
    will-change: transform;
}
.marquee__inner > .item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    opacity: 0.95;
}
.marquee__inner .item img {
    display: block;
    height: 60px;
    width: auto;
    filter: brightness(1);
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
section.referances-area {
    margin-top: 20%;
    overflow: hidden;
}
.referances-area .main-title,
.referances-area .main-text {
    transform: translateX(-30px);
    opacity: 0.2;
    transition:
        transform 1200ms cubic-bezier(0.22, 0.9, 0.3, 1),
        opacity 600ms ease;
    will-change: transform, opacity;
}
.referances-area .main-title.in-view,
.referances-area .main-text.in-view {
    transform: translateX(0);
    opacity: 1;
}
section.about-us-index .main-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: #000;
}
.education-index-area .main-title,
.education-index-area .main-text {
    transform: translateY(-40px);
    opacity: 0.2;
    transition:
        transform 1200ms cubic-bezier(0.22, 0.9, 0.3, 1),
        opacity 1200ms ease;
    will-change: transform, opacity;
}
.education-index-area .main-title.in-view,
.education-index-area .main-text.in-view {
    transform: translateY(0);
    opacity: 1;
}
section.top-text .text {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    padding: 0 15%;
}
section.about-us .col-12.col-lg-6 img {
    width: 100%;
    height: 100%;
    object-fit: none;
}
section.about-us .col-12.col-lg-6 {
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid #fff;
}
section.about-us .who-area-we-inline {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 15%;
    color: #000;
}
section.about-us .who-area-we-inline .title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}
section.about-us .who-area-we-inline .text {
    font-size: 18px;
    letter-spacing: 1px;
}
section.about-us .col-12.col-lg-6:nth-child(3),
section.about-us .col-12.col-lg-6:nth-child(4) {
    border-bottom: 1px solid #fff;
}
section.fallow-us .item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    justify-content: center;
    padding: 10px 0;
    background: #fff;
    border-radius: 20px;
}
.index-3 .si-block {
    padding: 18px;
    text-align: center;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.index-3 .si-block img {
    width: 48px;
    height: auto;
}
.index-3 .ss {
    align-items: center;
    gap: 4px;
    color: #000;
}
.index-3 .say {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
.index-3 .s-text {
    margin-left: 10px;
    font-size: 13px;
    font-weight: 600;
    align-self: center;
    color: #000;
}
.index-discover .col-6.col-lg-3 .item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
    gap: 20px;
    border-radius: 20px;
}
.index-discover .col-6.col-lg-3 .item .title {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}
.index-discover .col-6.col-lg-3 .item .text {
    color: #a1a1a1;
    font-size: 14px;
    font-weight: 300;
}
.index-discover .col-6.col-lg-3 .item img {
    padding: 6px;
    border-radius: 6px;
    border: 1px solid #f4f4f4;
}
.about-tezsan-index-title .title,
.missions-tezsan-index-title,
.values-tezsan-index-title,
section.certificate-section.emre-space-block .title,
section.blog-section .title {
    font-size: 40px;
    color: #000;
    font-weight: 600;
    margin-bottom: 20px;
}
section.about-us a.about-index-area {
    color: #000;
    text-decoration: unset;
}
section.about-us a.about-index-area .item {
    padding: 20px;
    background: #283339;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
section.about-us a.about-index-area .item .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}
section.about-year img,
.missions img,
.values img,
section.certificate-section img,
section.blog-section .blog-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.missions .title,
section.values .title,
section.about-year .title {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}
section.missions .text,
section.values .text,
section.about-year .text {
    color: #000;
}
section.missions .button-type-1 a,
section.values .button-type-1 a,
section.about-year a,
section.certificate-section .button-type-1 a,
section.blog-section .button-type-1 a {
    padding: 10px 20px;
    background: #000;
    border-radius: 100px;
    color: #fff;
}
section.missions .button-type-1,
section.values .button-type-1,
section.about-year .button-type-1,
section.certificate-section .button-type-1,
section.blog-section .button-type-1 {
    margin-top: 20px;
}
.course-page {
    padding: 36px 16px;
}
.page-container {
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.course-hero {
    text-align: center;
    margin-bottom: 36px;
}
.course-title {
    font-size: 2.25rem;
    line-height: 1.03;
    margin: 0 0 12px;
    font-weight: 800;
}
.course-subtitle {
    color: var(--muted-text);
    font-size: 1.0625rem;
    margin: 0 auto;
}
.left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.course-section {
    background: transparent;
    padding: 0;
}
.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    margin: 0 0 12px;
    font-weight: 700;
    color: #000;
}
.section-title .icon {
    font-variation-settings:
        "FILL" 0,
        "wght" 600,
        "GRAD" 0,
        "opsz" 20;
    color: var(--accent);
    font-size: 1.6rem;
    display: inline-flex;
}
.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
}
.feature-icon {
    display: inline-flex;
    min-width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--input-bg);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-variation-settings:
        "FILL" 0,
        "wght" 700;
    font-size: 18px;
    padding: 4px;
    box-shadow: 0 6px 14px rgba(2, 8, 10, 0.45);
}
.feature-text {
    margin: 0;
    color: #000;
    font-size: 0.99rem;
}
.right-column {
    display: flex;
    justify-content: flex-end;
}
.schedule-card {
    width: 100%;
    background: var(--panel-bg);
    padding: 20px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 30px rgba(2, 8, 10, 0.55);
    color: var(--text);
}
.schedule-timeline {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    position: relative;
}
.inline-education {
    display: flex;
    justify-content: space-between;
}
.timeline-item {
    position: relative;
    padding: 12px 12px 12px 66px;
    min-height: 56px;
}
.timeline-step {
    position: absolute;
    left: 0;
    top: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--input-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(2, 8, 10, 0.5);
    border: 8px solid var(--panel-bg);
}
.timeline-title {
    margin: 0 0 6px;
    font-size: 0.98rem;
    color: #000;
}
.timeline-desc {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.92rem;
}
.cta-wrap {
    margin-top: 18px;
}
.cta-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(180deg, var(--accent), var(--accent));
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition:
        background 0.12s ease,
        transform 0.08s ease,
        box-shadow 0.12s ease;
    box-shadow: 0 10px 26px rgba(17, 147, 212, 0.16);
}
.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.cta-button:active {
    transform: translateY(0);
}
.form-area {
    width: 100%;
    margin: 0 auto;
}
.form-area form {
    background: transparent;
    padding: 12px;
    border-radius: 12px;
    font-family: Inter, system-ui, Arial;
    color: var(--text);
}
.grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .grid-row {
        grid-template-columns: 1fr 1fr;
    }
}
label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 600;
}
.field-help {
    display: block;
    margin-top: 6px;
    color: #000;
    font-size: 0.82rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    outline: none;
    border: 1px solid;
}
input::placeholder,
textarea::placeholder {
    color: var(--muted-text);
}
select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
        linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(1em + 2px),
        calc(100% - 13px) calc(1em + 2px);
    background-size:
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}
textarea {
    min-height: 120px;
    resize: vertical;
}
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 4px rgba(17, 147, 212, 0.12);
    border-color: rgba(17, 147, 212, 0.9);
    transform: translateY(-1px);
}
.consent {
    margin-top: 10px;
    margin-bottom: 8px;
}
.consent-label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
    font-size: 0.92rem;
}
.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}
.actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}
.actions .note {
    color: #000;
    margin: 0;
    font-size: 0.88rem;
    flex: 1;
}
.submit {
    background: linear-gradient(180deg, var(--accent), var(--accent));
    color: #000;
    border: 0;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.98rem;
    box-shadow: 0 8px 20px rgba(17, 147, 212, 0.12);
}
.submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.8);
}
section.form-section .container .title {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
}
.consent-label span {
    color: #fff;
}
section.communication-area .left-side .inline-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.communication-area .left-side .inline-top .title {
    font-size: 40px;
    color: #000;
    font-weight: 600;
}
section.communication-area .left-side .inline-top .text {
    font-size: 18px;
    color: #000;
}
section.communication-area .right-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.communication-area .right-side .title {
    color: #000;
    font-size: 22px;
    font-weight: 600;
}
section.communication-area .form-area {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    background: transparent;
}
section.communication-area .right-side a.item {
    font-size: 15px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
}
section.communication-area .form-area form {
    display: block;
    background: var(--bg-card);
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(4, 8, 11, 0.6);
    box-sizing: border-box;
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        "Segoe UI",
        Roboto,
        "Helvetica Neue",
        Arial;
}
@media (min-width: 640px) {
    section.communication-area .form-area .grid-row {
        grid-template-columns: 1fr 1fr;
    }
}
section.communication-area .form-area label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #000;
    font-weight: 600;
}
section.communication-area .form-area input[type="text"],
section.communication-area .form-area input[type="email"],
section.communication-area .form-area textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    background: var(--input-bg);
    color: #fff;
    box-sizing: border-box;
    font-size: 0.95rem;
    outline: none;
    transition:
        box-shadow 0.12s ease,
        transform 0.06s ease;
    resize: vertical;
    min-height: 44px;
}
section.communication-area .form-area input::placeholder,
section.communication-area .form-area textarea::placeholder {
    color: var(--muted);
}
section.communication-area .form-area input:focus,
section.communication-area .form-area textarea:focus {
    box-shadow: 0 0 0 4px rgba(17, 147, 212, 0.12);
    border-color: rgba(17, 147, 212, 0.9);
    transform: translateY(-1px);
}
section.communication-area .form-area .name-surname,
section.communication-area .form-area .mail,
section.communication-area .form-area .topic,
section.communication-area .form-area .message {
    margin-bottom: 12px;
}
section.communication-area .form-area textarea {
    min-height: 120px;
    padding-top: 12px;
}
section.communication-area .form-area .actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    flex-wrap: wrap;
}
section.communication-area .form-area .note {
    color: #fff;
    font-size: 0.88rem;
    margin: 0;
}
section.communication-area .form-area .submit {
    background: linear-gradient(180deg, var(--accent), var(--accent));
    border: none;
    color: #fff;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.98rem;
    box-shadow: 0 8px 20px rgba(17, 147, 212, 0.15);
    transition:
        transform 0.08s ease,
        background 0.12s ease,
        box-shadow 0.12s ease;
}
section.communication-area .form-area .submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}
section.communication-area .form-area .submit:active {
    transform: translateY(0);
}
section.communication-area .form-area input[aria-invalid="true"],
section.communication-area .form-area textarea[aria-invalid="true"] {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
    border-color: rgba(220, 53, 69, 0.8);
}
section.communication-area .left-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.iframe-side iframe {
    border-radius: 20px;
}
section.education-area {
    padding-bottom: 5%;
    border-bottom: 1px solid #000;
}
section.education-index-area.emre-space-block {
    padding: 80px 0;
    margin-top: 19%;
    background: #283339;
}
footer {
    background: #000;
    padding: 80px 0;
    margin-top: 30px;
}
.footer-logo img {
    width: 100%;
}
.e-bulten .title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}
.e-bulten input#email {
    background: #fff;
    color: #000;
}
.bar {
    padding: 80px 0;
}
.scroller {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    animation: scroll-left 20s linear infinite;
    will-change: transform;
}
.track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
}
.text {
    display: inline-block;
    margin-right: 40px;
    font-weight: 300;
    font-size: 16px;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.top-bar:hover .scroller {
    animation-play-state: paused;
}
section.manset-area .manset-inline .sub-text {
    color: #fff;
}
.social-media-area-footer {
    margin: 30px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}
.social-media-area-footer .item-area {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    margin-top: 15px;
}
footer .location-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}
.contract-area .title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.contract-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.contract-area .inline a {
    color: #a2a2a2;
    font-size: 14px;
    font-weight: 300;
}
.contract-area .inline {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
}
.tezsan-logo-footer {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 5px;
    transform: skewX(-10deg);
}
.snackbar {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(100%);
    background: #323232;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition:
        transform 250ms ease,
        opacity 250ms ease;
    opacity: 0;
    z-index: 1100;
    font-size: 14px;
}
.snackbar.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.snackbar-icon {
    opacity: 0.95;
}
.snackbar.snackbar--error {
    background: #b00020;
}
section.about-year .inline,
.certifica-area .inline,
section.blog-section .inline {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f7f7;
    padding: 0 50px;
}
.gallery-outline img {
    border: 2px solid #e2e2e2;
    border-radius: 20px;
}
section.process-area .top-side .left-side {
    flex: 0 0 23%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 5px solid #2b61ee;
}
section.process-area .top-side {
    display: flex;
    justify-content: space-between;
}
section.process-area .top-side .right-side {
    flex: 0 0 75%;
    color: #4c4c4c;
    font-size: 14px;
    font-weight: 300;
}
section.process-area .top-side .left-side .top-title {
    color: #8c8c8c;
    font-size: 15px;
    font-weight: 300;
}
section.process-area .top-side .main-title {
    font-size: 30px;
    font-weight: 300;
    color: #4c4c4c;
}
section.process-area .bottom-side .list {
    flex: 0 0 30%;
}
section.process-area .bottom-side {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 30px 0;
}
section.process-area .top-side .number {
    font-size: 40px;
    color: #2b61ee;
    font-weight: 300;
}
section.process-area .bottom-side .list .top-side {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    align-items: center;
}
section.process-area .bottom-side .list .top-side .title {
    font-size: 24px;
    color: #4c4c4c;
    font-weight: 300;
}
section.process-area .bottom-side .list .text {
    font-size: 14px;
    color: #4c4c4c;
    font-weight: 300;
}
section.process-area {
    padding: 80px 0;
    background: #f7f7f7;
}
section.about-year img,
.missions img,
.values img,
section.certificate-section img,
section.blog-section .blog-area img,
section.certificate-section .col-12.col-md-6,
section.blog-section .col-12.col-md-6 {
    padding: 0;
}
section.certificate-section .who-we-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 70px;
    background: #f7f7f7;
    gap: 15px;
}
section.certificate-section .who-we-area .title {
    font-size: 32px;
    font-weight: 300;
}
section.certificate-section .who-we-area ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
}
section.certificate-section .read-more-btn {
    display: flex;
    width: fit-content;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
}
section.manset-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
video.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
section.manset-area {
    position: relative;
    z-index: 1;
}
.tezsan-basic {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 5px;
}

.tezsan-basic::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(-18deg);
    width: 7px;
    height: 36px;
    background: linear-gradient(180deg, #2b61ee 0%, #8a2be2 100%);
    border-radius: 7px;
    box-shadow: 0 4px 12px rgba(43, 97, 238, 0.12);
    pointer-events: none;
    z-index: 0;
    -webkit-backface-visibility: hidden;
}
.word {
    font-size: 16px;
    font-weight: 700;
    color: #0b0b0b;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}
.word.academy {
    font-weight: 600;
}
section.tezsan-core .item .top-side {
    display: flex;
    justify-content: space-between;
}
.info {
    background: linear-gradient(90deg, #2b61ee 0%, #8a2be2 100%);
    color: #fff;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 300;
}
section.tezsan-core .item {
    padding: 20px;
    background: #fafafc;
    border: 1px solid #f4f4f4;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
section.tezsan-core .item .bottom-side img {
    width: 24px;
    background: #fff;
    padding: 3px;
    border-radius: 100px;
}
section.tezsan-core .item .mid-side {
    font-size: 15px;
    font-weight: 400;
    color: #4f4f4f;
}
section.tezsan-core .item .bottom-side {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #4f4f4f;
}
section.route-education .inline {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #2b61ee 0%, #8a2be2 100%) border-box;
    padding: 50px;
    border: 2px solid transparent;
    border-radius: 40px;
}
section.route-education .inline .outline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
section.route-education .inline .outline .title {
    font-size: 24px;
    font-weight: 600;
}
section.route-education .inline .outline .title span {
    color: #2b61ee;
}
section.route-education .inline .outline .bottom-side {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg, #2b61ee 0%, #8a2be2 100%) border-box;
    border-radius: 100px;
    border: 2px solid transparent;
    padding: 10px 15px;
}
section.route-education .inline .outline a .bottom-side {
    color: #000;
    font-size: 12px;
}
section.approved-certificate {
    background: #000;
    padding: 80px 0;
}
section.approved-certificate .title {
    font-size: 27px;
    font-weight: 500;
    color: #fff;
    width: 45%;
}
section.approved-certificate .inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
section.approved-certificate .inline .text {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.4px;
}
section.approved-certificate .inline .text span {
    color: #b0b0b0;
}
section.approved-certificate .list-side .list img {
    width: 30px;
}
section.approved-certificate .list-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
section.approved-certificate .list-side .list .item {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: #fff;
    align-items: center;
}
section.approved-certificate .list-side .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
section.slides-blok .item img {
    width: 45px;
    border: 1px solid #f4f4f4;
    padding: 10px;
    border-radius: 10px;
    background: #e9e9e9;
}
section.slides-blok .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    border: 1px solid #f4f4f4;
    padding: 30px;
    gap: 20px;
    will-change: transform;
    transform-origin: center;
    animation: floatY 4s ease-in-out infinite;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
    background-color: #fff;
}
@keyframes floatY {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
section.slides-blok .col-12.col-md-4 .row {
    gap: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
section.slides-blok .item .top-side {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    font-weight: 600;
}
section.slides-blok .item .text {
    text-align: center;
    font-size: 14px;
    margin-right: 0;
    color: #000;
}
.mid-line-bg {
    background-image: url("/image/items-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 650px;
    width: auto;
    border-radius: 20px;
}
.mid-line-bg .txt-title-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px;
    align-items: center;
}
.mid-line-bg .txt-title-area .title {
    font-size: 23px;
    color: #fff;
    font-weight: 300;
}
.mid-line-bg .txt-title-area .text {
    color: #fff;
    margin: 0;
    text-align: center;
    font-weight: 500;
}
.mid-line-bg span.word {
    color: #fff;
}
.slides-blok .item:hover,
.slides-blok .item:focus-within {
    animation-play-state: paused;
    transform: translateY(-14px) scale(1.01);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    cursor: pointer;
}
section.sss .card-header button.btn.btn-link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    text-align: left;
}
section.sss .card-header {
    background: #fff;
    border-bottom: none;
    border-radius: 25px;
}
section.sss .card {
    margin-bottom: 20px;
}
section.sss .card .collapse.show {
    border-top: 1px solid rgba(0, 0, 0, 0.175);
}
section.sss .title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 300;
}
section.tezsan-edu-side .tezsan-basic span.word {
    color: #fff;
    font-size: 50px;
}
section.tezsan-edu-side .tezsan-basic::before {
    height: 75px;
}
section.tezsan-edu-side .top-side .title {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
}
section.tezsan-edu-side .top-side {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.tezsan-edu-side .inline {
    margin-top: 40px;
}
section.tezsan-edu-side .inline .item {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid #fff;
    color: #fff;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 30px;
    gap: 10px;
}
section.tezsan-edu-side .inline .item .text {
    margin-right: 0;
    height: 70px;
    display: flex;
    align-items: center;
}
section.tezsan-edu-side .inline .row {
    gap: 25px 0;
}
section.education-main svg {
    position: relative;
    top: -70px;
}
section.education-main {
    position: relative;
}
section.education-main .inline .edu-main-title {
    color: #fff;
    font-size: 39px;
}
section.education-main .inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.education-main .inline .bottom {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 20%;
    gap: 20px;
    will-change: transform, opacity;
    transform: translateY(-80px);
    opacity: 0;
    animation: eduslide 4000ms cubic-bezier(0.22, 0.98, 0.36, 1) 200ms forwards;
}
@keyframes eduslide {
    to {
        transform: translateY(30px);
        opacity: 1;
    }
}
section.education-main .inline .bottom .tezsan-basic span.word {
    color: #fff;
    font-size: 39px;
    font-weight: 400;
}
section.education-main .inline .bottom .tezsan-basic::before {
    height: 55px;
}
@keyframes yavasGelis {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body.education .top-side-bg {
    position: absolute;
    top: 48px;
    right: 0;
    width: 489px;
    height: 300px;
    opacity: 0;
    animation: yavasGelis 3s ease forwards;
}
section.education-main .inline .bottom .package-area {
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}
section.education-main .inline .bottom .title {
    font-size: 24px;
    color: #fff;
    padding: 0 30%;
    text-align: center;
    font-weight: 300;
}
section.education-main .inline .bottom .package-area .item {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background: transparent;
    border: 1px solid #fff;
    background-color: #ffffff26;
    background-image: none;
    backdrop-filter: blur(27px);
    border-radius: 15px;
    min-width: 320px;
}
section.education-main .inline .bottom a.info {
    font-size: 18px;
}
.blog-page-title {
    font-family: "Times New Roman", serif;
    font-size: 2.5rem;
    color: #222;
    font-weight: 400;
}
.custom-blog-card {
    border: none;
    background: transparent;
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    border: 1px solid #e2e2e2;
    border-radius: 20px;
    padding: 10px;
}
.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}
.blog-img-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.custom-blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}
.meta-info {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.card-title-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.card-title-link:hover {
    color: #d63031;
}
.card-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}
.sidebar-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.popular-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
}
.popular-list li:last-child {
    border-bottom: none;
}
.popular-link {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
    transition: color 0.2s;
}

.popular-link:hover {
    color: #d63031;
    padding-left: 5px;
}
.view-badge {
    font-size: 0.75rem;
    color: #aaa;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.blog-detail-title {
    font-family: "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.blog-meta-header {
    font-size: 0.95rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.toc-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #d63031;
}
.toc-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.toc-list {
    padding-left: 20px;
    margin: 0;
}
.toc-list li {
    margin-bottom: 10px;
}
.toc-list a {
    text-decoration: none;
    color: #555;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.toc-list a:hover {
    color: #d63031;
    text-decoration: underline;
}
.content-area {
    font-family: "Georgia", serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
.content-area p {
    margin-bottom: 25px;
}
.content-area h2 {
    font-family: "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111;
    overflow-wrap: break-word;
    word-break: break-word;
}
.content-area h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #222;
    overflow-wrap: break-word;
    word-break: break-word;
}
figcaption {
    font-style: italic;
    color: #777;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}
.gallery-outline .title {
    font-family: "Times New Roman", serif;
    font-size: 2.5rem;
    color: #222;
    font-weight: 400;
}
.contact-form-wrapper label.form-label {
    color: #000;
}
.package-select option {
    color: #000;
}
.split-side .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #fff;
    background-color: #ffffff26;
    background-image: none;
    backdrop-filter: blur(17px);
    padding: 30px;
    border-radius: 20px;
    gap: 20px;
}
.split-side .item .mid-side {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.split-side .item .top-side {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.split-side .item .bottom-side {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #fff;
}
.split-side .item .bottom-side img {
    width: 24px;
    background: #fff;
    padding: 3px;
    border-radius: 100px;
}
.split-side .item .top-side .word {
    color: #fff;
}
.split-side {
    margin-top: 25px;
}
section.course-content-area .accordion-body ul li.info {
    width: fit-content;
    list-style-type: none;
}
section.course-content-area .accordion-body ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-parent {
    position: relative;
    display: inline-block;
    user-select: none;
}
.dropdown-parent .dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    padding: 10px 8px;
    font-weight: 500;
}
.dropdown-parent .arrow-icon {
    transition: transform 0.22s ease;
    display: inline-block;
}
.dropdown-parent .dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    z-index: 1200;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 20, 30, 0.12);
    padding: 8px 6px;
    transform-origin: top;
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.dropdown-parent.open .dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.dropdown-parent.open .arrow-icon {
    transform: rotate(180deg);
}
.dropdown-parent .dropdown-item {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #1f2937;
    font-size: 14px;
    white-space: nowrap;
}
.dropdown-parent .dropdown-item + .dropdown-item {
    margin-top: 4px;
}
.dropdown-parent .dropdown-item:hover,
.dropdown-parent .dropdown-item:focus {
    background: rgba(0, 0, 0, 0.03);
    outline: none;
}
@media (hover: hover) and (pointer: fine) {
    .dropdown-parent:hover .dropdown-menu {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
        top: 35px;
    }
    .dropdown-parent:hover .arrow-icon {
        transform: rotate(180deg);
    }
}
.page-header {
    padding: 120px 0 60px 0;
    background-color: #f8f9fa;
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.page-header p {
    color: #666;
    font-size: 16px;
}
.product-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: #fff;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}
.btn-inspect {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
}
.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}
.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: #d32f2f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.link-arrow span {
    margin-left: 5px;
    transition: margin 0.2s;
}
.link-arrow:hover span {
    margin-left: 10px;
}
ul.product-features {
    padding: 0;
}
section.course-content-area .accordion-body ul li {
    list-style-type: none;
}
.header .logo-are img {
    max-height: 70px;
}
@media (max-width: 1680px) {
    .emre-space-block{
        margin-top: 8%;
    }
}
@media (max-width: 1440px) {
    .emre-space-block{
        margin-top: 8%;
    }
}
@media (max-width: 1366px) {
    section.manset-section {
        height: 100vh;
    }
    section.manset-area .title {
        font-size: 100px;
    }
    @keyframes slideDown {
        to {
            transform: translateY(135px);
            opacity: 1;
        }
    }
    section.process-area .bottom-side .list .top-side .title {
        font-size: 20px;
    }
    .emre-space-block {
        margin-top: 8%;
    }
    .dropdown-parent:hover .dropdown-menu {
        transform: translateX(-25%) translateY(0);
        top: calc(100% + -15px);
    }
}
@media (max-width: 1280px) {
    .emre-space-block {
        margin-top: 10%;
    }
    .header .logo-are {
        justify-content: flex-start;
    }
    .header .logo-are img {
        max-height: 55px;
    }
    section.manset-area .title {
        font-size: 115px;
    }
    .dropdown-parent:hover .dropdown-menu {
        transform: translateX(-30%) translateY(0);
    }
    .dropdown-parent .dropdown-menu {
        top: calc(100% + -20px);
    }
    section.top-text.emre-space-block{
        margin-top:10%;
    }
    section.process-area .bottom-side .list .top-side .title {
        font-size: 20px;
    }
}
@media (max-width: 990px) {
    html,
    body {
        overflow-x: hidden;
    }
    section {
        box-sizing: border-box;
        width: 100%;
    }
    body {
        padding-top: 60px;
        padding-bottom: env(safe-area-inset-bottom);
        -webkit-font-smoothing: antialiased;
    }
    video.hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        object-fit: cover;
        z-index: -1;
        pointer-events: none;
    }
    section.manset-area .title {
        font-size: 30px;
        line-height: 1.05;
        text-align: center;
        margin: 0 10px;
    }
    section.manset-area .main-text {
        font-size: 18px;
        text-align: center;
    }
    section.manset-area .sub-text {
        font-size: 14px;
        text-align: center;
        padding: 0 12px;
    }
    .top-bar {
        height: 42px;
    }
    .scroller .text {
        font-size: 13px;
        margin-right: 18px;
        font-weight: 600;
    }
    section.education-index-area .image-top img {
        width: 100%;
        height: auto;
        display: block;
    }
    .grid-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .form-area form {
        padding: 10px;
    }
    footer iframe {
        height: 200px;
        min-height: 160px;
    }
    .emre-space-block {
        margin-top: 3% !important;
        padding: 28px 12px;
    }
    section.manset-area {
        margin-top: -30%;
    }
    section.education-index-area .main-title,
    .about-tezsan-index-title .title,
    .missions-tezsan-index-title,
    .values-tezsan-index-title,
    section.certificate-section.emre-space-block .title,
    section.blog-section .title {
        font-size: 20px;
    }
    section.education-index-area .main-text {
        font-size: 15px;
    }
    section.manset-section {
        top: -201px;
        height: 900px;
    }
    section.process-area .top-side {
        flex-direction: column;
        gap: 20px;
    }
    section.process-area .bottom-side {
        flex-direction: column;
        gap: 25px;
    }
    section.process-area .bottom-side .list .top-side {
        align-items: center;
        flex-direction: row;
    }
    section.tezsan-core .row,
    section.route-education .row,
    section.approved-certificate .row {
        gap: 20px;
    }
    section.route-education .inline {
        padding: 20px;
    }
    section.process-area {
        margin-top: -40%;
        padding: 20px;
    }
    section.approved-certificate .title {
        width: 100%;
    }
    section.approved-certificate {
        padding: 40px 15px;
    }
    .mid-line-bg .txt-title-area .title {
        text-align: center;
    }
    .contract-area,
    .locaiton-area {
        margin-top: 15px;
    }
    @keyframes slideDown {
        to {
            transform: translateY(350px);
            opacity: 1;
        }
    }
    .split-side .row {
        gap: 20px;
    }
    .mobile-hamburger {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 1001;
    }
    .mobile-hamburger .hamburger-line {
        width: 24px;
        height: 2px;
        background-color: #000;
        display: block;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        z-index: 1050;
        transition: transform 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
    }
    .mobile-nav.open {
        transform: translateX(300px);
    }
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    .mobile-nav-title {
        font-weight: 700;
        font-size: 16px;
        color: #333;
    }
    .mobile-close {
        background: none;
        border: none;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        color: #333;
    }
    .mobile-scroll-area {
        flex: 1;
        overflow-y: auto;
        padding: 10px 0;
    }
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mobile-nav-item {
        border-bottom: 1px solid #f9f9f9;
    }
    .mobile-link {
        display: block;
        padding: 14px 20px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: background 0.2s;
    }
    .mobile-link:hover {
        background-color: #f8f8f8;
        color: #d32f2f;
    }
    .sub-toggle-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 15px;
    }
    .sub-toggle-wrapper .mobile-link {
        flex: 1;
    }
    .mobile-sub-icon {
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.3s;
        color: #666;
    }
    .mobile-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #fcfcfc;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    .mobile-nav-item.open .mobile-submenu {
        max-height: 500px;
        border-top: 1px solid #eee;
    }
    .mobile-nav-item.open .mobile-sub-icon {
        transform: rotate(180deg);
    }
    .mobile-submenu li a {
        display: block;
        padding: 12px 20px 12px 35px;
        color: #555;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #f5f5f5;
    }
    .mobile-submenu li a:hover {
        color: #000;
        background: #f0f0f0;
    }
    .mobile-nav-footer {
        padding: 20px;
        border-top: 1px solid #eee;
    }
    .btn-mobile-cta {
        display: block;
        text-align: center;
        background: linear-gradient(90deg, #2b61ee 0%, #8a2be2 100%);
        color: #fff;
        padding: 12px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
    }
    .header {
        background-color: #ffffff !important;
        color: #000000 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }
    .header a {
        color: #000000 !important;
    }
    .header .header-normal {
        display: none !important;
    }
    .header .header-scrolled {
        display: block !important;
        color: #000000 !important;
        font-weight: bold;
    }
    .mobile-hamburger .hamburger-line {
        background-color: #000000 !important;
    }
    section.education-main .inline .bottom .title {
        padding: 0;
    }
    section.tezsan-edu-side .tezsan-basic span.word {
        font-size: 25px;
    }
    section.tezsan-edu-side .top-side .title {
        font-size: 18px;
    }
    section.tezsan-edu-side .tezsan-basic::before {
        height: 45px;
    }
    section.course-content-area .accordion-body ul {
        padding: 0;
    }
    .course-title {
        font-size: 22px;
    }
    .instructor-card.content-box p {
        font-size: 13px;
    }
    .instructor-card.content-box h4 {
        font-size: 17px;
    }
    section.top-text .text{
        margin-right: 0;
        padding: 0;
    }
}
