:root {
    --tm-color: rgb(255, 102, 50); /* Ana renk */
    --tm-hover-color: #E64A19; /* Hover rengi */
    --tm-active-color: #D84315; /* Active (tıklama) rengi */
    --tm-shadow-color: rgba(255, 87, 34, 0.5);
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Black.woff2") format("woff2"), url("../fonts/Gilroy-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Thin.woff2") format("woff2"), url("../fonts/Gilroy-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-UltraLight.woff2") format("woff2"), url("../fonts/Gilroy-UltraLight.woff") format("woff");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.fw-regular-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: normal;
}

.fw-bold-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: bold;
}

.fw-medium-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
}

.fw-black-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: 900;
}

.fw-semibold-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
}

.fw-thin-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: 100;
}

.fw-ultralight-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: 200;
}

.fw-light-tm {
    font-family: 'Gilroy', sans-serif;
    font-weight: 300;
}

/* Global ( */
body {
    background: #f7f7ff;
    font-family: 'Gilroy', sans-serif;
    font-size: 20px;
    color: #232927;
    width: 100%;
}
html, body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: #232927;
}

.container-tm {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.shadow-tm {
    box-shadow: 0px 16px 49px 0px rgba(255, 102, 50, 0.69);
}

.shadow-white {
    box-shadow: -12px 12px 40px 0px rgba(255, 255, 255, 0.5);
}

.text-tm {
    color: var(--tm-color);
}

.text-muted-tm {
    color: #71727c;
}

.bg-tm {
    background-color: var(--tm-color);
}

.bg-tm2 {
    background-color: #ffefea;
}

.icon {
    height: 50px;
    width: 50px;
}

.btn {
    padding: 21px 25px 21px 25px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
}

.btn-white {
    color: var(--tm-color);
    background-color: #ffffff;
    border-color: #ffffff;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #ececec;
    border-color: #ececec;
}

.btn-white:focus, .btn-white.focus {
    background-color: #ececec;
    border-color: #ececec;
    box-shadow: 0 0 0 0.25rem #ececec;
}

.btn-white:active, .btn-white.active {
    background-color: #ececec;
    border-color: #ececec;
}

.btn-white:disabled, .btn-white.disabled {
    background-color: #ececec;
    border-color: #ececec;
    opacity: 0.65;
    pointer-events: none;
}


.btn-tm {
    color: #fff;
    background-color: var(--tm-color);
    border-color: var(--tm-color);
    transition: all 0.3s ease;
}

.btn-tm:hover {
    color: #fff;
    background-color: var(--tm-hover-color);
    border-color: var(--tm-hover-color);
}

.btn-tm:focus, .btn-tm.focus {
    color: #fff;
    background-color: var(--tm-color);
    border-color: var(--tm-color);
    box-shadow: 0 0 0 0.25rem var(--tm-shadow-color);
}

.btn-tm:active, .btn-tm.active {
    color: #fff;
    background-color: var(--tm-active-color);
    border-color: var(--tm-active-color);
}

.btn-tm:disabled, .btn-tm.disabled {
    color: #fff;
    background-color: var(--tm-color);
    border-color: var(--tm-color);
    opacity: 0.65;
    pointer-events: none;
}

.btn-outline-tm {
    color: var(--tm-color);
    background-color: transparent;
    border-color: var(--tm-color);
    transition: all 0.3s ease;
}

.btn-outline-tm:hover {
    color: #fff;
    background-color: var(--tm-color);
    border-color: var(--tm-color);
}

.btn-outline-tm:focus, .btn-outline-tm.focus {
    color: var(--tm-color);
    background-color: transparent;
    border-color: var(--tm-color);
    box-shadow: 0 0 0 0.25rem var(--tm-shadow-color);
}

.btn-outline-tm:active, .btn-outline-tm.active {
    color: #fff;
    background-color: var(--tm-active-color);
    border-color: var(--tm-active-color);
}

.btn-outline-tm:disabled, .btn-outline-tm.disabled {
    color: var(--tm-color);
    background-color: transparent;
    border-color: var(--tm-color);
    opacity: 0.65;
    pointer-events: none;
}


.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    flex-basis: 80px;
    flex-shrink: 0;
    font-size: 35px;
    border-radius: 10px;
}

.slider-container {
    margin: 0 auto;
    width: 100%;
}

.slider-item {
    text-align: center;
    padding: 10px;
}


/* Global ) */

/* Header ( */
.navbar {
    position: fixed;
    padding: 0;
    top: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar .container {
    border-bottom: 1px solid #eceef3;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}


.navbar .nav-link {
    padding: 15px 22px 15px 22px !important;
    font-family: 'Gilroy', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.navbar .nav-icon {
    padding: 3px !important;
}

.navbar .nav-link .icon {
    width: 70px;
    border-radius: 30px !important;
}

.navbar .nav-item.nav-seperator {
    padding-top: 10px;
}

.navbar .nav-item.nav-seperator .nav-link {
    border-right: 1px solid #e5e9ef;
    height: 32px;
    padding: 0 !important;
}

.navbar-buttons {
    padding-left: 25px;
}

.navbar-buttons .btn {
    padding: 10px !important;
    color: #aeb8cb;
}

.navbar-buttons .dropdown-item a {
    text-decoration: none;
    color: #aeb8cb;
}

.navbar-buttons .btn-outline-tm {
    padding: 7px 15px 7px 5px !important;
}

.navbar-buttons .rounded-circle {
    width: 30px;
    height: 30px;
    background: #fde0d5;
    flex-basis: 30px;
    flex-shrink: 0;
}

/* Header ) */


/* Banner ( */
.main-banner-container {
    background-image: url("../images/banner_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
}

.banner-content {
    padding-top: 100px;
    padding-bottom: 180px;
}

.banner-content .content-wrapper h3 {
    font-size: 32px;
}

.banner-content .content-wrapper h1 {
    font-size: 56px;
}

.banner-content .content-wrapper p {
    color: #40434c;
}

/* Banner ) */

/* Serives ( */
#services {
    position: relative;
    z-index: 1;
}

#services .services-container .info-container {
    background-color: #ffffff;
    margin-top: -110px;
    border-radius: 10px;
}

#services .services-content {
    padding: 70px 65px 0px 65px;
}

#services .services-content h3 {
    font-size: 42px;
    font-weight: 300;
    padding-top: 40px;
}

#services .services-content p {
    padding-top: 20px;
    padding-bottom: 20px;
}

#services .info-content {
    padding-bottom: 50px;
}

#services .info-image {
    margin-top: -80px;
}

#services .info-image img {
    width: 100%;
}

#services .services-bottom {
    border-top: 1px solid #e0e0ee;
}

#services .services-bottom > div {
    padding: 50px;
    border-right: 1px solid #e0e0ee;
}

#services .services-bottom > div:last-child {
    border-right: none;
}

#services .services-bottom h5 {
    font-size: 22px;
    font-weight: 600;
}

#services .services-bottom p {
    font-size: 18px;
}

.advantages-container {
    position: relative;
    background-image: url('../images/aerial-view-business-team.png');
    background-position: top;
    background-repeat: no-repeat;
    z-index: -1;
    margin-top: -180px;
    padding-top: 200px;
}

.advantages-container .advantages-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.2);
}

.advantages-container .advantages-card .title {
    color: #021a75;
}

.advantages-container .advantages-card p {
    font-size: 18px;
    line-height: 24px;
}

/* services ) */

/* solutions ( */
#solutions {
    padding-top: 100px;
}

#solutions .row > div {
    padding-top: 20px;
}

#solutions .content-wrapper h2 {
    font-size: 42px;
}

#solutions .content-wrapper p {
    font-size: 18px;
}

#solutions .content-wrapper span {
    font-size: 16px;
}

#solutions .content-wrapper .small {
    font-size: 13px;
}

/* solutions ) */

/* testimonials ( */
#testimonials {
    padding-top: 150px;
}

#testimonials .container {
    position: relative;
    z-index: 1;
    margin-top: -80px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 16px 49px 0px rgba(61, 65, 79, 0.18);

}

.testimonials-top {
    background: linear-gradient(to right, #ff482b, #fda245);
    max-width: 1510px;
    height: 300px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 35px;
}

.testimonials-top .icon-container {
    position: relative;
    width: 160px;
    height: 160px;
}

.testimonials-top .icon-container .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 35px;
    height: 35px;
    transform: translate(-50%, -50%);
}

.testimonials-top .icon-container .circle,
.testimonials-top .icon-container .circle-lg,
.testimonials-top .icon-container .circle-xl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.testimonials-top .icon-container .circle {
    width: 80px;
    height: 80px;
    background: #fff;
    z-index: 2;
}

.testimonials-top .icon-container .circle-lg {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.testimonials-top .icon-container .circle-xl {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.testimonials-top .text-container {
    padding-top: 40px;
    padding-left: 40px;
}

.testimonials-top .btn {
    margin-top: 40px;
    margin-right: 40px;
}

#testimonials .testimonial-slider {
    text-align: center;
    padding: 30px;
}

#testimonials .testimonial-logo img {
    width: 200px;
}

#testimonials .testimonial-content {
    padding: 0 150px;
}

#testimonials .testimonial-author {
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
}


#testimonials .carousel-control-prev,
#testimonials .carousel-control-next {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #d6d6d6;
    color: #d6d6d6;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

#testimonials .carousel-control-prev:hover,
#testimonials .carousel-control-next:hover {
    background-color: #e9ecef;
}

/* testimonials ) */


/* faq ( */
.main-faq-container {
    padding-top: 100px;
}

.main-faq-container .nav-container,
.main-faq-container .tab-content {
    border-radius: 10px;
    background: #fff;
}

.main-faq-container .tab-content {
    padding: 40px;
    overflow-y: scroll;
}

.main-faq-container .tab-content h3 {
    font-size: 22px;
    font-weight: 600;
}

.main-faq-container .tab-content p {
    font-size: 18px;
}

.main-faq-container .tabs-container {
    height: 100%;
}

.main-faq-container .tabs-container .tab-content::-webkit-scrollbar {
    width: 8px;
}

.main-faq-container .tabs-container .tab-content::-webkit-scrollbar-thumb {
    background-color: #eaeaea;
    border-radius: 10px;
}

.main-faq-container .tabs-container .tab-content::-webkit-scrollbar-thumb:hover {
    background-color: #d3d3d3;
}

.main-faq-container .tabs-container .tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.main-faq-container .nav-item {
    width: 100%;
    border-bottom: 2px solid #ededee !important;
}

.main-faq-container .nav-item:last-child {
    border-bottom: none !important;
}

.main-faq-container .nav-item .nav-link {
    width: 100%;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 0;
    background: #fff;
    color: #24272e;
    border: none !important;
    font-size: 18px;
    font-weight: 500;
}

.main-faq-container .nav-item:first-child .nav-link {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.main-faq-container .nav-item:last-child .nav-link {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.main-faq-container .nav-item .nav-link .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px !important;
    background: #ffe0d6;
    color: var(--tm-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-top: -5px;
}

.main-faq-container .nav-item .nav-link .bi-arrow-right-short {
    display: none;
}

.main-faq-container .nav-item .nav-link.active .bi-plus {
    display: none;
}

.main-faq-container .nav-item .nav-link.active .bi-arrow-right-short {
    display: block;
}


/* faq ) */


/* integrations ( */
#integrations {
    position: relative;
    background: #f7f7ff;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 80px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

#integrations h1 {
    font-size: 40px;
    font-weight: 300;
}

#integrations .col {
    padding: 10px
}

#integrations .col img {
    width: 100%;
}

/* integrations ) */


footer {
    position: relative;
    background: #161a1d;
    padding: 100px 0 0 0;
    margin-top: -50px;
    border-top: 1px solid #e0e0ee;
    z-index: 0;
}

footer .border-bottom {
    border-bottom: 1px solid #30373f !important;
}

footer .logo {

}

footer .social-media {
}

footer .social-media ul {
    list-style: none;
    padding: 0;
}

footer .social-media ul li {
    display: inline-block;
    margin-right: 10px;
}

footer .social-media ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #ffffff;
}

footer .social-media ul li a .bi-twitter {
    color: #1da1f2;
}

footer .social-media ul li a .bi-facebook {
    color: #3b5998;
}

footer .social-media ul li a .bi-instagram {
    color: #e1306c;
}

footer h5 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .contact-info ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

footer .contact-info ul li i {
    color: #828997;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

footer .contact-info ul li a {
    display: block;
    color: #e0e0ee !important;
    font-size: 16px;
    line-height: 1.5;
}

footer .contact-info a {
    text-decoration: none;
}

footer .contact-info .icon-container {
    border-radius: 10px;
    background-color: rgb(34, 151, 214);
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

footer .contact-info span {
    color: #ffffff;
    font-size: 14px;
}


footer .map-container {
    position: relative;
    overflow: hidden; /* Kenarların dışına taşmasını engeller */
    border-radius: 10px; /* Yuvarlatılmış köşeler */
    width: 100%; /* Haritanın genişliği */
    max-width: 600px; /* Maksimum genişlik */
    height: 240px; /* Haritanın yüksekliği */
}

footer .map-container iframe {
    width: 100%;
    height: 100%;
    border: none; /* Kenar çerçevesini kaldır */
}


footer .contact-form {

}

/* Input ve textarea stilleri */
footer .contact-form .form-control {
    background-color: #ffffff;
    color: #161a1d;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
}

footer .contact-form .form-control:focus {
    border-color: #ffe1d4;
    box-shadow: 0 5px 5px rgba(255, 226, 215, 0.5);
}

footer .contact-form textarea {
    box-sizing: border-box;
    padding-right: 140px !important;
}

footer .contact-form .btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
}

footer .copyright {
    padding: 25px;
    color: #788094;
    font-size: 16px;
    background: #0f1214;
}

@media (max-width: 1550px) {
    .advantages-container {
        background-size: 120%;
        padding-top: 150px;
    }
}
@media (max-width: 1240px) {
    .navbar{
        zoom: 0.9;
    }
}
@media (max-width: 1200px) {

    .navbar .nav-item:first-child{
        display: none !important;
    }

    .advantages-container {
        background-size: 180%;
    }

    #testimonials .testimonial-content {
        padding: 0 80px;
    }

}

@media (max-width: 992px) {

    .main-banner-container {
        position: relative;
    }

    .main-banner-container .banner-content {
        padding-top: 40px;
        padding-bottom: 150px;
        /*display: flex;*/
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .main-banner-container .icon-container {
        /*flex-shrink: 0;*/
        margin-left: auto;
        margin-right: auto;
    }

    .main-banner-container .content-wrapper {
        flex-grow: 1;
        padding-top: 10px !important;
        padding-left: 30px;
        zoom: .8;
        text-align: center;
    }
    .main-banner-container .content-wrapper .btn {
        margin-left: auto;
        margin-right: auto;
    }

    .main-banner-container .banner-image {

    }
    #services .info-container{
        padding-right: 15px;
        padding-left: 15px;
    }
    #services .info-content{
        text-align: center;

    }
    #services .info-image {
        display: none;
    }

    #services .services-bottom > div {
        border-right: none;
        padding: 20px 0px 0px 0px;
    }
    #services .services-bottom > div h5{
        font-size: 16px;
    }
    #services .services-bottom > div p{
        font-size: 13px;
    }

    #services .services-bottom > div:last-child {
        border-right: none;
        border-bottom: none;
    }

    #solutions {
        padding-top: 30px;
    }

    .testimonials-top .text-container {
        padding-left: 10px;
    }

    .testimonials-top .button-container {
        float: left !important;
    }

    .testimonials-top .btn {
        margin-top: 10px;
        margin-right: 0;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {

    #services .row {
        padding: 20px 10px !important;
    }

    .advantages-container {
        background-size: 200%;
    }

    .icon-container {
        height: 50px;
        width: 50px;
        flex-basis: 50px;
        font-size: 20px;
    }
    .icon-container img{
        width: 30px;
    }


    .advantages-container h3 {
        font-size: 20px !important;
    }

    #solutions .row > div {
        text-align: center;
        padding: 20px !important;
    }
    #solutions .row > div > div{
        padding: 0px !important;
    }

    #solutions .row {

    }

    #solutions .img-wrapper {

    }

    #solutions .img-wrapper img {
        width: 50%;
    }

    #solutions .content-wrapper {
        text-align: center;
    }
    #solutions .align-items-center {
        display: block !important;
    }

    #testimonials{
        padding-left: 10px;
        padding-right: 10px;
    }
    #testimonials .testimonial-content{
        font-size: 14px;
    }

    #testimonials .carousel-control-prev,
    #testimonials .carousel-control-next {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background-color: #fff;
        border: 1px solid #d6d6d6;
        color: #d6d6d6;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 80px;
    }
    .testimonials-top {
        padding: 10px;
    }

    .testimonials-top .icon-container {
        zoom: .7;
    }

    #testimonials .testimonial-content {
        padding: 0 50px;
    }
}

@media (max-width: 650px) {
    .advantages-container {
        background-size: 250%;
    }

    .testimonials-top {
        padding: 5px;
    }

    .testimonials-top .icon-container {
        zoom: .5;
    }
}

@media (max-width: 576px) {
    .advantages-container {
        background-size: 500%;
    }

    .testimonials-top .icon-container {
        display: none;
    }
}
