@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

:root {

    /* Site Properties */
    --background-color: #f5f5f5;
    --main-color: #5eb7c1;
    --alternate-color: #5eb7c1;
    --main-text-color: #000;
    --soft-text-color: #444;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    --border-radius: 5px;
    --small-border-radius: 3px;
    --border-color: #ddd;
    --transparent-color: rgba(0, 0, 0, 0.3);
    --transparent-color-2: rgba(0, 0, 0, 0.5);

    /* Font Properties */
    --font-size: 14px;
    --mobile-font-size: 12px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-family: "Ubuntu", sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Form Elements */
    --input-color: #000;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #bbb;
    --placeholder-color: #888;
    --textarea-padding: 10px;
    --button-color: #5eb7c1;
    --button-hover-color: #61adb6;
    --button-padding: 0 15px;
    --button-height: 40px;
    --button-border: none;

}

body {
    margin: 0;
    padding: 0;
    background: var(--background-color);
    font-family: var(--font-family);
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
    color: #000;
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

::placeholder {
    color: var(--placeholder-color);
}

.panel-text {
    font-size: 1rem;
    color: var(--soft-text-color);
    margin-bottom: -10px;
    font-weight: var(--font-regular);
    text-align: justify;
}

.panel-text img,
.panel-text iframe,
.panel-text video {
    max-width: 100%;
}

.panel-text iframe {
    width: 100%;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-medium);
    color: var(--main-text-color);
}

.panel-text h1 {
    font-size: 1.6em;
}

.panel-text h2 {
    font-size: 1.5em;
}

.panel-text h3 {
    font-size: 1.4em;
}

.panel-text h4 {
    font-size: 1.3em;
}

.panel-text h5 {
    font-size: 1.2em;
}

.panel-text h6 {
    font-size: 1em;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    list-style: circle;
    display: block;
    padding-left: 20px;
}

.panel-text ul li {
    margin-bottom: 5px;
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    min-width: unset !important;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: none;
    padding: 0;
}

.row {
    margin-left: calc(var(--column-gap) * -1);
    margin-right: calc(var(--column-gap) * -1);
}

.row>[class*="col-"],
.container,
.container-fluid {
    padding-left: var(--column-gap);
    padding-right: var(--column-gap);
}



.row.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

.row.row.no-gutters>[class*="col-"],
.row.row.no-gutters>.col {
    padding-left: 0;
    padding-right: 0;
}

.sbt {
    border-top: solid 1px var(--border-color);
}

.sbb {
    border-bottom: solid 1px var(--border-color);
}

.section-gray {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    background: #eee;
}

.section-white {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    background: #fff;
}


.section-minaaa {
    background-color: #5eb7c1;
}

.smt {
    margin-top: var(--section-gap);
}

.smr {
    margin-right: var(--section-gap);
}

.smb {
    margin-bottom: var(--section-gap);
}

.sml {
    margin-left: var(--section-gap);
}

.spt {
    padding-top: var(--section-gap);
}

.spr {
    padding-right: var(--section-gap);
}

.spb {
    padding-bottom: var(--section-gap);
}

.spl {
    padding-left: var(--section-gap);
}

.dmt {
    margin-top: var(--main-gap);
}

.dmr {
    margin-right: var(--main-gap);
}

.dmb {
    margin-bottom: var(--main-gap);
}

.dml {
    margin-left: var(--main-gap);
}

.dmth {
    margin-top: calc(var(--main-gap)/2);
}

.dmrh {
    margin-right: calc(var(--main-gap)/2);
}

.dmbh {
    margin-bottom: calc(var(--main-gap)/2);
}

.dmlh {
    margin-left: calc(var(--main-gap)/2);
}

.dpt {
    padding-top: var(--main-gap);
}

.dpr {
    padding-right: var(--main-gap);
}

.dpb {
    padding-bottom: var(--main-gap);
}

.dpl {
    padding-left: var(--main-gap);
}

.dpth {
    padding-top: calc(var(--main-gap)/2);
}

.dprh {
    padding-right: calc(var(--main-gap)/2);
}

.dpbh {
    padding-bottom: calc(var(--main-gap)/2);
}

.dplh {
    padding-left: calc(var(--main-gap)/2);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.mobile-nav>.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 400px;
    height: 100%;
    background: none;
    z-index: 99;
}

.mobile-nav>.mobile-nav-content>.mobile-nav-inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: var(--main-gap);
    pointer-events: all;
    overflow-y: auto;
}

.mobile-nav.active {
    pointer-events: all;
}

.mobile-nav.active>.mobile-nav-content>.mobile-nav-inner {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-menu-links>.item>a {
    position: relative;
    display: block;
    font-size: 1rem;
    color: var(--main-text-color) !important;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
}

.mobile-menu-links>.item>.inner-menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.mobile-menu-links>.item.active>.inner-menu {
    display: flex;
}

.mobile-menu-links>.item>.inner-menu>a {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color) !important;
}

.mobile-menu-links>.item>.inner-menu>a:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-links>.item>a>i {
    position: absolute;
    top: 0;
    right: 0;
}

.mobile-menu-links>.item.active>a>i:before {
    content: "\F0140";
}

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: var(--button-border);
    background: var(--button-color);
    padding: var(--button-padding);
    height: var(--button-height);
    border-radius: var(--border-radius);
    overflow: hidden;
    white-space: nowrap;
}

.main-btn.small {
    height: calc(var(--button-height) / 1.4);
}

.main-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: var(--button-hover-color);
    transition: var(--main-transition) ease 0s;
}

.main-btn:hover:before {
    left: 0;
}

.main-btn>span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    color: #fff;
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.main-btn.small>span {
    font-size: 0.8rem;
    text-transform: unset;
}

.main-btn>span>i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1.2rem;
    border-radius: var(--small-border-radius);
    background: var(--transparent-color);
}

.main-btn.small>span>i {
    font-size: 1rem;
    min-width: 20px;
    height: 20px;
}

.main-btn.full-width {
    display: flex;
    width: 100%;
}

.main-btn.full-height {
    height: 100%;
}

.main-btn.no-radius {
    border-radius: 0;
}

.site-top {
    padding: 5px 0;
    background: var(--main-color);
}

.site-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-top-flex>.left,
.site-top-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.st-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.st-contact>i {
    display: block;
    font-size: 1.2rem;
    color: #fff;
}

.st-contact>a {
    display: block;
    font-size: 0.9rem;
    color: #fff !important;
}

.st-contact>a:hover {
    text-decoration: underline !important;
}

.st-social {
    display: flex;
    justify-content: center;
    align-items: center;
}

.st-social>a {
    font-size: 1.2rem;
    color: #fff !important;
}

.st-social>a:not(:last-child) {
    margin-right: 10px;
}

.site-nav {
    display: block;
    position: relative;
    z-index: 999;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.site-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.site-logo img {
    width: 140px;
}

.site-logo {
    padding: 10px 0;
}

.site-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.site-nav-flex>.left,
.site-nav-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.sn-links {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.sn-links>.item {
    position: relative;
}

.sn-links>.item>.inner-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px;
    background: #fff;
    box-shadow: var(--box-shadow);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: var(--main-transition) ease 0s;
}

.sn-links>.item:hover>.inner-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.sn-links>.item>.inner-menu>a {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color) !important;
    white-space: nowrap;
}

.sn-links>.item>.inner-menu>a:not(:last-child) {
    margin-bottom: 10px;
}

.sn-links>.item>.inner-menu>a:hover {
    text-decoration: underline !important;
}

.sn-links>.item:not(:last-child) {
    margin-right: 20px;
}

.sn-links>.item>a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: var(--main-text-color) !important;
    position: relative;
}

.sn-links>.item>a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    opacity: 0;
    transition: var(--main-transition) ease 0s;
}

.sn-links>.item:hover>a:after,
.sn-links>.item.active>a:after {
    opacity: 1;
}

.sn-menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 50px;
    height: 50px;
    border: solid 1px var(--border-color);
    background: none;
    font-size: 1.5rem;
    border-radius: var(--border-radius);
    color: var(--main-color);
}

.slider-container {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(600/1920*100%);
}

.slide-banner>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #000;
    opacity: 0.2;
}

.slide-desc {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    z-index: 10;
    pointer-events: none;
}

.slide-desc-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    pointer-events: all;
    padding: var(--section-gap);
    background: var(--transparent-color-2);
    border-radius: var(--border-radius);
    position: relative;
}

.slide-desc-inner:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: solid 2px #fff;
    border-radius: var(--border-radius);
    z-index: 10;
    pointer-events: none;
}

.slide-desc-inner>.title {
    display: block;
    font-size: 2.8rem;
    font-weight: var(--font-bold);
    color: #fff;
    margin: 0;
}

.slide-desc-inner>.desc {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-medium);
    color: #fff;
    margin-top: 10px;
}

.slide-desc-inner>.main-btn {
    margin-top: 20px;
}

.main-slider-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.main-slider-buttons>div {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    background: #fff;
    pointer-events: all;
    font-size: 1.5rem;
    cursor: pointer;
}

.main-slider-buttons>div:first-child {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.main-slider-buttons>div:last-child {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.main-about-img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
    border-radius: var(--border-radius);
    border: solid 5px #fff;
    box-shadow: var(--box-shadow);
}

.main-about-img>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-title {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-bold);
    margin-bottom: calc(var(--main-gap)/2);
    padding-bottom: calc(var(--main-gap)/2);
    position: relative;
    color: var(--main-text-color);
}

.main-title.small {
    font-size: 1.4rem;
}

/* .main-title:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--main-color);
} */

.main-about-text {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1rem;
    color: var(--soft-text-color);
}

.service-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--main-gap);
    border: solid 5px #fff;
    box-shadow: var(--box-shadow);
}

.service-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.service-item>.img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    z-index: 2;
    transition: var(--main-transition) ease 0s;
    backdrop-filter: blur(0px);
}

.service-item:hover>.img:before {
    backdrop-filter: blur(2px);
}

.service-item>.img>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item>.img>.title {
    display: block;
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: calc(100% - 10px);
    padding: 20px;
    background: var(--transparent-color);
    margin: 0;
    font-size: 1.2rem;
    border-radius: var(--border-radius);
    font-weight: var(--font-medium);
    color: #fff;
    transition: var(--main-transition) ease 0s;
    z-index: 10;
}

.service-item:hover>.img>.title {
    background: var(--transparent-color-2)
}

/* Yeni Kart Yapısı */
.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: var(--main-gap);
    transition: var(--main-transition) ease 0s;
    min-height: 400px;
}

.service-card:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.service-card-title {
    background: var(--alternate-color);
    padding: 14px 20px;
    text-align: center;
}

.service-card-title h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
    color: #fff;
    line-height: 1.3em;
}

.service-card-img {
    width: 100%;
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 20px 20px;
}

.service-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--main-transition) ease 0s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.04);
}

.service-card-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.service-card-desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--soft-text-color);
    line-height: 1.5em;
}

.service-card-btn {
    display: inline-block;
    border: solid 2px var(--alternate-color);
    color: var(--alternate-color);
    border-radius: 30px;
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    transition: var(--main-transition) ease 0s;
}

.service-card-btn:hover {
    background: var(--alternate-color);
    color: #fff !important;
}

.badge-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.badge-item>.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: solid 2px var(--border-color);
    position: relative;
    margin-bottom: 10px;
}

.badge-item>.icon>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.badge-item>.title {
    display: block;
    font-size: 1.4rem;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    margin-bottom: 10px;
}

.badge-item>.desc {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color);
    margin: 0;
}

.project-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: var(--main-gap);
    border: solid 5px #fff;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.project-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
}

.project-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--main-transition);
}

.project-item:hover>.img>img {
    filter: none;
    transform: scale(1.1);
}

.project-item>.img>.title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparent-color);
    z-index: 2;
    color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: var(--font-bold);
}

.ftr-logo {
    display: block;
    margin-bottom: var(--main-gap);
}

.ftr-logo img {
    width: 190PX;
}

.ftr-content {
    border-top: solid 1px var(--border-color);
    background-color: #5eb7c1;
}

.ftr-desc {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color);
    margin-bottom: var(--main-gap);
}

.ftr-title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    margin-bottom: calc(var(--main-gap)/2);
    padding-bottom: calc(var(--main-gap)/2);
    color: var(--main-text-color);
    /* border-bottom: dotted 2px #bbb; */
}


.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: var(--main-gap);
}

.ftr-links>a {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color) !important;
}

.ftr-links>a:not(:last-child) {
    margin-bottom: 5px;
}

.ftr-links>a:hover {
    text-decoration: underline !important;
}

.ftr-contact {
    display: block;
    margin-bottom: var(--main-gap);
}

.ftr-contact>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.ftr-contact>.item>i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 10px;
    color: var(--main-color);
}

.ftr-contact>.item:not(:last-child) {
    margin-bottom: 10px;
}

.ftr-contact>.item>a,
.ftr-contact>.item>span {
    display: block;
    font-size: 0.9rem;
    color: var(--soft-text-color);
}

.ftr-contact>.item>a:hover {
    text-decoration: underline !important;
}

.ftr-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: calc(var(--main-gap) - 10px);
}

.ftr-social>a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--main-text-color);
}

.ftr-social>a:hover {
    background: #ccc;
}

.ftr-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: var(--main-gap);
    margin-bottom: calc(var(--main-gap) - 5px);
    border-top: solid 1px #bbb;
}

.ftr-bottom>.copy-text {
    display: block;
    font-size: 0.8rem;
    color: var(--soft-text-color);
    margin-bottom: 5px;
}

.ftr-bottom>.otalya-logo {
    margin-bottom: 5px;
}

.ftr-bottom>.otalya-logo img {
    width: 60px;
    filter: grayscale(1);
}

.ftr-bottom>.otalya-logo>a:hover>img {
    filter: none;
}

.bcrumb {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bcrumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    opacity: 0.45;
}

.bcrumb>* {
    position: relative;
    z-index: 10;
}

.bcrumb .title {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: #fff;
    margin: 0;
}

.bcrumb .links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: dotted 2px rgba(255, 255, 255, 0.2);
    position: relative;
}

.bcrumb .links:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

.bcrumb .links>a {
    display: block;
    font-size: 0.9rem;
    color: #fff !important;
}

.bcrumb .links>a:hover {
    text-decoration: underline !important;
}

.bcrumb .links>i {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    pointer-events: none;
    margin: 0 5px;
}

.bcrumb .links>.bcrumb-active {
    display: block;
    font-size: 0.9rem;
    color: #fff
}

.about-page-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
    border: solid 5px #fff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.about-page-img>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(720/1280*100%);
    border: solid 5px #fff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    margin-bottom: var(--main-gap);
}

.article-img>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
}

.article-info>.title {
    display: block;
    font-size: 2rem;
    color: var(--main-text-color);
    font-weight: var(--font-bold);
    margin-bottom: 10px;
}

.article-info>.specs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.article-info>.specs>span {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    color: var(--soft-text-color);
    margin-right: 10px;
    margin-bottom: 10px;
}

.side-services {
    display: block;
    padding: 20px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.side-services>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    background: #fbfbfb;
    border: solid 1px var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--main-transition);
}

.side-services>a:hover {
    background: #eee;
}

.side-services>a:not(:last-child) {
    margin-bottom: 10px;
}

.side-services>a>.img {
    display: block;
    min-width: 80px;
    width: 80px;
    position: relative;
    margin-right: 10px;
}

.side-services>a>.img>div {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.side-services>a>.img>div>img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-services>a>.content {
    display: block;
}

.side-services>a>.content>.title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.2rem;
    color: var(--main-text-color);
    font-weight: var(--font-medium);
    margin: 0;
}

.contact-desc {
    display: block;
    font-size: 1rem;
    color: var(--soft-text-color);
    margin-bottom: var(--main-gap);
}

.contact-page-items {
    display: block;
}

.contact-page-items>.item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.contact-page-items>.item:not(:last-child) {
    margin-bottom: 10px;
}

.contact-page-items>.item>i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.4rem;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 2px var(--main-color);
    color: var(--main-color);
    margin-right: 10px;
}

.contact-page-items>.item>div>span:first-child {
    display: block;
    font-size: 1rem;
    font-weight: var(--font-bold);
    color: var(--main-text-color);
    margin-bottom: 5px;
}

.contact-page-items>.item>div>span:last-child,
.contact-page-items>.item>div>a {
    display: block;
    font-size: 1rem;
    color: var(--soft-text-color) !important;
}

.contact-page-items>.item>div>a:hover {
    text-decoration: underline !important;
}

.form-group {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: var(--main-gap);
}

.form-group>input,
.form-group>textarea {
    display: block;
    width: 100%;
    height: var(--input-height);
    border: var(--input-border);
    padding: var(--input-padding);
    color: var(--input-color);
    border-radius: var(--border-radius);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.4);
}

.form-group>textarea {
    height: unset;
    padding: var(--textarea-padding);
}

.ctxt {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    color: var(--soft-text-color);
}

.form-group>span.error-label {
    display: block;
    font-size: 0.8rem;
    font-weight: var(--font-medium);
    color: red;
    margin-top: 2px;
}

.form-box {
    padding: 20px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.map-frame {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: solid 5px #fff;
}

.map-frame>* {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px var(--border-color);
}

.form-captcha-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.blog-item {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    border: solid 1px #ddd;
    background: #212121;
    border-radius: 5px;
    overflow: hidden;
}

.blog-item>.img {
    display: block;
    width: 100%;
    position: relative;
    max-height: 260px;
    overflow: hidden;
    padding-top: calc(720/1024*100%);
}

.blog-item>.img>.date {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: #DB5F05;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #212121;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.blog-item>.img>.date>i {
    margin-right: 4px;
    font-size: 12px;
    line-height: 18px;
}

.blog-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

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

.blog-item>.desc {
    padding: 20px;
    position: relative;
    transition: 0.4s ease 0s;
    background-color: #fff;
}

.blog-item:hover>.desc {
    background: var(--main-color);
    color: #fff;
}

.blog-item:hover>.desc>.title {
    color: #fff;
}


.blog-item>.desc>.title {
    display: block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: var(--main-text-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #bbb;
}

.blog-item>.desc>.caption {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin: 0;
}

.gallery-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 20px;
    border: solid 1px #ddd;
}

.gallery-item>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.gallery-item>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

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

.gallery-item:hover>.img:before {
    left: 0;
}

.gallery-item>.img:after {
    content: "\f002";
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: 0.2s ease 0s;
    border-radius: 50%;
}

.gallery-item:hover>.img:after {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-item>.desc {
    padding: 5px 10px;
    background: #181818;
    transition: 0.2s ease 0s;
}

.gallery-item:hover>.desc {
    background: #282828;
}

.gallery-item>.desc>span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pagination {
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
}

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

.pagination ul li {
    margin: 2px;
    display: block;
}

.pagination ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 5px;
    background: #fff;
    border: solid 1px #ddd;
    color: #000 !important;
    border-radius: 3px;
}

.pagination ul li a:hover {
    background: #eee;
}

.pagination ul li.active a {
    background: #FF0000;
    border-color: #FF0000;
    color: #fff !important;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.6;
    color: #fff !important;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.phone-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 1.6;
    color: #fff !important;
    background: rgb(105, 105, 255);
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.phone-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}


.blog-container {
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
}

.blog-img {
    position: relative;
    display: block;
    width: 100%;
}

.blog-img>div {
    position: relative;
    overflow: hidden;
    padding-top: calc(5 / 8 * 100%);
}


.blog-img>div>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blog-details {
    position: relative;
    bottom: 20px;
    display: flex;
    justify-content: center;
}



.blog-desc {
    width: 90%;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}



.blog-desc h4 {
    color: #000;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    font-size: 20px;
    font-weight: 600;
}


.blog-p {
    color: #222222d6;
    font-size: 13px;
    font-weight: 500;
}

.section-mina {
    background-color: #bcf8ff;
    padding: 10px 0;
}

.custom-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
    position: relative;
    z-index: 1000;
    font-family: 'Ubuntu', sans-serif;
}

.custom-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 50px;
    /* Adjusting size to look like the image */
    width: auto;
}

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-links a i {
    font-size: 18px;
    color: #666;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:hover i {
    color: #0b599f !important;
    /* Their blue color roughly from logo */
}

/* Dropdown Content */
.nav-links .has-dropdown .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.nav-links .has-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
    color: #444 !important;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #0b599f !important;
    padding-left: 25px;
    /* slight indent animation on hover */
    transition: all 0.2s ease;
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 25px;
    border-left: 1px solid #ddd;
}

.hc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ab929;
    /* green from img */
    font-size: 32px;
}

.hc-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hc-title {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    margin-bottom: -4px;
}

.hc-number {
    font-size: 20px;
    font-weight: 800;
    color: #222 !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.mobile-toggle {
    margin-left: 20px;
}

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

    .header-contact {
        display: none;
    }

    .header-nav {
        justify-content: flex-end;
    }

    .custom-header-inner {
        padding: 10px 0;
    }
}

/* Neden Biz Section */
.neden-biz-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
}
.custom-neden-row {
    justify-content: center;
}
.neden-card {
    padding: 10px;
    height: 100%;
}
.neden-icon-wrap {
    width: 140px;
    height: 140px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background-color: #fff;
    transition: all 0.3s ease;
}
.neden-card:hover .neden-icon-wrap {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #aaa;
}
.neden-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.neden-title {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}
.neden-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    text-align: justify;
}
.neden-desc p {
    margin: 0;
    text-align: justify;
}
.neden-desc a {
    color: #1a8fcc;
    text-decoration: none !important;
    font-weight: 500;
}
.neden-desc a:hover {
    text-decoration: underline !important;
}


.f-white{
    color: #fff !important;
}


.social-media-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.social-icons {
    width: 200px;
}