﻿/*#region Header*/

.navbar-custom {
    background-color: white !important;
    height: 125px;
    display: flex;
    align-items: center;
    --bs-navbar-padding-y: 2.0rem;
}

.custom-logo {
    margin-left: 5vw;
    flex-grow: 1;
}

    .custom-logo img {
        width: 265px
    }

.custom-nav-items {
    width: 50%;
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.navbar-expand-lg .navbar-nav {
    gap: 30px;
}

.navbar-nav .nav-link {
    color: black !important;
    font-size: 1.0rem;
    font-weight: 500;
}

    .navbar-nav .nav-link.active {
        font-weight: bold;
    }

.dropdown-menu {
    background-color: white !important;
    border: 1px solid white;
    width: 300px;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px;
}

    .dropdown-item:hover {
        background-color: black !important;
        color: white !important;
    }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
        margin-top: -1px;
        display: none; /* Hover ile açmak isterseniz */
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block; /* Masaüstü hover davranışı */
    }

.dmoImage {
    height: 35px
}
/* Search CSS */
#search-icon {
    cursor: pointer;
}

#search-icon-mobile {
    cursor: pointer;
}

.search-box {
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid #80808047;
    border-radius: 12px;
    padding: 5px 15px;
    font-size: 1.0rem;
}

.list-group {
    position: absolute;
    top: 100%;
    left: 65px;
    width: 100%;
    z-index: 999;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

    .list-group a {
        color: #FF5500;
    }


@media (max-width: 1440px) {
    .custom-nav-items {
        width: 65%;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .offcanvas .offcanvas-body {
        overflow-y: auto;
    }

    .offcanvas .dropdown-menu {
        position: static !important;
        width: 100% !important;
        margin: 0 !important;
        border: 0 !important;
        display: none !important;
    }

        .offcanvas .dropdown-menu.show {
            display: block !important;
        }

    .offcanvas .dropdown-submenu:hover > .dropdown-menu {
        display: none !important;
    }

    .offcanvas .submenu-heading {
        font-weight: 700;
        color: #000;
    }

    .offcanvas {
        max-width: 70%;
    }

    .dmoImage {
        margin-top: 30px;
        height: 45px;
    }
}


/*#endregion Header*/

/*#region Footer */

.footer-custom {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer-logo img {
    width: 280px;
}

.copyright, .rights {
    font-size: 0.9rem;
    color: #ccc;
}

.social-icons {
    margin-top: 10px;
}

    .social-icons a {
        color: #fff;
        font-size: 1.8rem;
        margin-right: 15px;
        text-decoration: none;
        transition: 0.3s;
    }

        .social-icons a:hover {
            color: #FF5500;
        }

.footer-custom h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 0.85rem;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #FF5500;
        }


/*#endregion Footer */

/*#region Slider*/

.SliderSec {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    max-height: 600px;
}

    .carousel-item img {
        max-height: 553px;
        object-fit: cover;
        width: 100%;
    }

.carousel-caption {
    position: absolute;
    top: 30%;
    left: 10%;
    text-align: left;
    max-width: 600px;
}

    .carousel-caption h2 {
        font-size: 3rem;
        color: black;
    }

    .carousel-caption p {
        font-size: 1.2rem;
        color: #000000b5;
    }

.btn-warning {
    background-color: #FF5500 !important;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
}

.carousel-indicators button {
    background-color: white;
    width: 15px;
    height: 13px;
    border-radius: 50%;
    margin: 5px;
    border: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 9px
}

.carousel-indicators .active {
    background-color: #FF5500;
    opacity: 1;
}

@media (max-width: 768px) {
    .carousel-caption {
        top: 20%;
        left: 5%;
        max-width: 90%;
    }

        .carousel-caption h2 {
            font-size: 1.5rem;
        }

        .carousel-caption p {
            font-size: 0.7rem;
        }

    .carousel-item img {
        height: 250px;
    }

    .SliderSec {
        height: 250px;
    }

    .btn-warning {
        font-size: 0.8rem;
    }
}

/*#endregion Slider*/

/*#region TabSlider*/

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    z-index: 1;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .section-header p {
        font-size: 1.2rem;
        color: gray;
    }

.TabSlider {
    background-color: #FFFBF8;
    padding: 100px 0px;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #eee;
}

    .nav-tabs .nav-link {
        color: black;
        font-weight: bold;
        padding: 10px 20px;
        transition: all 0.3s;
    }

    .nav-tabs .nav-link-tab-slider.active {
        color: #FF5500;
        border-bottom: 3px solid #FF5500;
    }

.content-area {
    margin-top: 20px;
    position: relative;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

    .tab-content.active {
        display: block;
        opacity: 1;
    }

.tab-container {
    display: flex;
    position: relative;
    align-items: stretch;
    height: 400px;
}

.tab-image {
    width: 50%;
    z-index: 2;
}

    .tab-image img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .tab-image video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 16px;
    }

.tab-text {
    background-color: black;
    padding: 108px;
    color: white;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 50%;
    position: relative;
    z-index: 1;
    margin-left: -22px;
}

@media (max-width: 768px) {
    .tab-container {
        flex-direction: column;
    }

    .tab-text {
        width: 100%;
        text-align: center;
        padding: 20px;
        border-radius: 0;
        margin-left: 0;
        margin-top: -12px;
    }

    .tab-image {
        width: 100%;
        height: 50vh;
    }

        .tab-image img {
            object-fit: cover;
        }
}

/*#endregion TabSlider*/

/*#region CarouselItems*/

.custom-carousel-section {
    text-align: center;
    padding: 100px 0px;
    background: linear-gradient(90deg, #fff 3%, #F6ECE5 85%);
}

.custom-carousel {
    position: relative;
    max-width: 75%;
    margin: auto;
    overflow: hidden;
}

.custom-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.screen-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 95%;
    max-width: 300px;
}

    .screen-card img {
        width: 100%;
        min-height: 180px;
        border-radius: 10px;
    }

    .screen-card h3 {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .screen-card p {
        min-height: 100px;
        font-size: 1rem;
        color: gray;
        margin-bottom: 10px;
    }

.btn-warning {
    background-color: #FF5500;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    display: inline-block;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

    .btn-warning:hover {
        background-color: #E04A00;
    }

.custom-carousel-control-prev, .custom-carousel-control-next {
    position: absolute;
    top: 8px;
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-control-prev {
    right: 18%;
}

.custom-carousel-control-next {
    right: 15%;
}

@media (max-width: 599px) {
    .custom-carousel {
        max-width: 100%;
    }

    .custom-carousel-item {
        min-width: 100%;
    }

    .custom-carousel-control-prev, .custom-carousel-control-next {
        top: 460px;
    }

    .custom-carousel-control-prev {
        right: 55%;
    }

    .custom-carousel-control-next {
        right: 35%;
    }
}

@media (min-width: 600px) {
    .custom-carousel {
        max-width: 75%;
    }

    .custom-carousel-item {
        min-width: 50%; /* 2 item göster */
    }
}

@media (min-width: 900px) {
    .custom-carousel-item {
        min-width: 25%;
    }
}

/*#endregion */

/*#region OfferSection*/

.offer-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 100px 0px;
}

.offer-container {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.offer-image {
    width: 50%;
}

    .offer-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.offer-content {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
}

.offer-title {
    font-size: 35px;
    font-weight: bold;
    color: #333;
}

.offer-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.offer-list {
    list-style: none;
    padding: 0;
    color: #444;
    font-size: 18px;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #FF5500;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

    .contact-button:hover {
        background-color: #e05500;
    }

@media (max-width: 768px) {
    .offer-container {
        flex-direction: column;
    }

    .offer-image,
    .offer-content {
        width: 100%;
    }

    .offer-content {
        padding: 20px;
        text-align: center;
    }
}


/*#endregion OfferSection*/

/*#region Fonts*/

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-UltraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

body {
    margin-bottom: 60px;
    font-family: 'Gilroy', sans-serif;
}

/*#endregion Fonts*/

/*#region TechCarousel*/

.tech-news-carousel-section {
    text-align: left;
    padding: 25px 0;
    padding-left: 75px;
    background-color: #FFFFFF;
}

.tech-news-header {
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tech-news-orange {
    color: #FF5500;
}

.tech-news-title {
    font-size: 2rem;
    margin: 0;
}

.tech-news-controls {
    display: flex;
    gap: 10px;
    z-index: 9999999;
}

.tech-news-prev,
.tech-news-next {
    background-color: white;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tech-news-prev:hover,
    .tech-news-next:hover {
        background-color: #f0f0f0;
    }

.tech-news-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -60px;
}

.tech-news-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.tech-news-item {
    box-sizing: border-box;
    text-align: left;
    padding: 80px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 470px;
}

.tech-news-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.tech-news-item-title {
    font-size: 1.0rem;
    margin: 5px 0;
    text-decoration: none
}

.tech-news-item-title-a {
    color: black;
    text-decoration: none;
}

.tech-news-item-description {
    font-size: 1rem;
    color: gray;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tech-news-button {
    background-color: #FF5500;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    align-self: flex-start;
}

    .tech-news-button:hover {
        background-color: #E04A00;
    }

/* Mobil Görünüm */
@media (max-width: 599px) {
    .tech-news-carousel-section {
        padding: 50px 0;
        padding-left: 0;
    }

    .tech-news-header {
        padding: 0 15px;
        margin-bottom: 30px !important;
    }

    .tech-news-title {
        font-size: 1.5rem;
    }

    .tech-news-controls {
        gap: 5px;
    }

    .tech-news-prev,
    .tech-news-next {
        width: 35px;
        height: 35px;
    }

    .tech-news-item {
        min-width: 100%;
    }
}

@media (min-width: 600px) and (max-width: 1023px) {
    .tech-news-item {
        min-width: calc(50% - 20px);
    }
}

/* Büyük Ekranlar (Laptop ve masaüstü) */
@media (min-width: 1024px) {
    .tech-news-item {
        min-width: calc(25% - 20px);
    }

    .tech-news-inner {
        min-height: 450px;
    }
}


/*#endregion TechCarousel */

/*#region ButtomArea*/

.custom-section-container *,
.custom-section-container *::before,
.custom-section-container *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-section-container {
    margin-bottom: -17px;
    display: flex;
    width: 100%;
    height: 327px;
}

.custom-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .custom-image-area img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.custom-text-area {
    width: 50%;
    background-color: #FFF7F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

    .custom-text-area h2 {
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
    }

    .custom-text-area p {
        font-size: 18px;
        color: #555;
        margin-bottom: 20px;
    }

.custom-contact-button {
    background-color: #FF5500;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .custom-contact-button:hover {
        background-color: #E64A00;
    }

@media (max-width: 768px) {
    .custom-section-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .custom-image-area {
        width: 100%;
        height: auto;
    }

    .custom-text-area {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .custom-image-area img {
        width: 100%;
        height: auto;
        max-height: none;
    }
}

/*#endregion Buttom Area */

/*#region Header2*/

.Header2Sec {
    position: relative;
    width: 100%;
    margin: 0;
}

.header2-image {
    width: 100%;
    display: block;
    margin: 0 auto;
    max-height: 315px;
    object-fit: cover;
}

.header2-text-container {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.header2-title {
    color: #FF5500;
    margin: 0;
    padding: 0;
    font-family: Gilyor-black;
    font-size: 3rem;
}

@media (max-width: 768px) {
    .header2-title {
        font-size: 1.5rem;
        left: 15px;
    }

    .header2-image {
        max-height: 200px;
    }
}

/*#endregion Header2*/

/*#region GridCarousel*/

.grid-carousel-section {
    padding-top: 55px;
    background-color: #FFFBF8;
}

.grid-carousel {
    position: relative;
    max-width: 75%;
    margin: auto;
    overflow: hidden;
    min-height: 950px;
}

.grid-carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.grid-carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.screen-card2 {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 0 auto;
    height: 600px;
}

    .screen-card2 img {
        width: 100%;
        border-radius: 10px;
        max-height: 350px;
    }

    .screen-card2 h3 {
        margin-top: 10px;
    }

.grid-carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.grid-carousel-prev, .grid-carousel-next {
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    width: 34px;
    height: 34px;
    margin: 0 5px;
    border-radius: 7px;
}

.grid-carousel-pages {
    display: flex;
    align-items: center;
}

.page-indicator {
    background-color: white;
    display: inline-block;
    min-width: 30px;
    padding: 5px;
    margin: 0 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
}

    .page-indicator.active {
        font-weight: bold;
        text-decoration: underline;
    }


@media (max-width: 800px) {
    .grid-carousel-slide {
        grid-template-columns: repeat(1, 1fr);
    }
}
/*#endregion */

/*#region Iletisim*/

.IletisimSec {
    padding: 40px 20px;
}

    .IletisimSec h3 {
        font-size: 1.3rem;
    }

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-container,
.contact-info {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: navy;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.highlight {
    color: #FF5500;
}

.icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.IletisimImg {
    padding: 15%;
}

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .IletisimImg {
        padding: 0px;
    }
}

/*#endregion Iletisim*/

/*#region Hakkimizda*/

.HakkimizdaSec {
    padding: 100px
}

    .HakkimizdaSec h4 {
        color: #FF751D;
        font-size: 1.0rem;
    }

@media (max-width: 800px) {
    .HakkimizdaSec {
        padding: 10px
    }
}

/*#endregion Hakkimizda*/
