/* Fonts */
:root {
  --default-font: "Kumbh Sans", serif;
  --heading-font: "Kumbh Sans", serif;
  --nav-font: "Kumbh Sans", serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #555555; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0c2e8a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1854b7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #555555; /* The default color of the main navmenu links */
  --nav-hover-color: #1854b7; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1854b7; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1d1d1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0e2d89;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-y: auto;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
}

body {
  overflow-x: hidden;
}

.bgNone section {
  background: none !important;
}

.flip-card.kariyercardbg .img-fluid.mt-3,
.flip-card.kariyercardbg .fw-bold.mt-2.text-white {
  transition: all .2s cubic-bezier(.76,.05,.86,.06);
  opacity: 1;
}

.flip-card.kariyercardbg:hover .img-fluid.mt-3,
.flip-card.kariyercardbg:hover .fw-bold.mt-2.text-white {
  opacity: 0;
}


a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  min-height: 80px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
/* Sağ taraftaki butonlar */
.utilities {
  justify-content: flex-end;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 9px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    /* font-size: 12px; */
    /* line-height: 0;
    margin-left: 5px;
    transition: 0.3s; */
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 5px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}
.footer-bottom-bg {
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  background-image: url("../img/hakkimizda/hakkimizda.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingsd {
  background-image: url("../img/sd-x-cloud/sdbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingiletisimaglari {
  background-image: url("../img/iletisimaglari/iletisimaglaribanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingyayincilikvekablo {
  background-image: url("../img/yayincilik/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingtumlesikiletisim {
  background-image: url("../img/tumlesik/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingyazilim {
  background-image: url("../img/yazilim/webbaner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingservistek {
  background-image: url("../img/servistek/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingredbanner {
  background-image: url("../img/redhat/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .blogdetaybanner {
  background-image: url("../img/blog/blogdetay.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingverimerkez {
  background-image: url("../img/verimerkezi/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingiletisim {
  background-image: url("../img/verimerkezi/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingkariyer {
  background-image: url("../img/kariyer/webbannernew.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .headingservisler {
  background-image: url("../img/servis/webbanner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  scroll-margin-top: 118px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media only screen and (max-width: 992px) {
  .hero .info {
    padding: 30px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 62px;
  font-weight: 700;
  position: relative;
}

.hero .info h2 span {
  color: var(--accent-color);
}

/* .hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */



.hero .info p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
}

.hero .info .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
}

.hero .info .btn-get-started:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  /* background-color: color-mix(
    in srgb,
    var(--background-color),
    transparent 30%
  ); */
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  /* background: color-mix(in srgb, var(--surface-color), transparent 20%); */
  color: color-mix(in srgb, var(--default-color));
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  /* padding: 30px; */
  margin: 30px 15px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    /* padding: 30px; */
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

span.num {
  flex-shrink: 0;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 38px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.fs14 {
  font-size: 12px !important;
}
.fs17 {
  font-size: 17px !important;
}
.pagetitlecolor {
  color: #315ece !important;
}

.fw-14 {
  font-size: 14px !important;
}
.fw-15 {
  font-size: 15px !important;
}
.mt100 {
  margin-top: 100px !important;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(
    var(--accent-color) 50%,
    color-mix(in srgb, var(--accent-color), transparent 75%) 52%
  );
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.texthakkimizdablue {
  font-weight: 700;
  color: #0056b3;
}
.texthakkimizdasection1 {
  color: #315ece;
  font-weight: 600;
}
.texthakkimizdatitle {
  color: #315ece;
  font-weight: 700;
}
.ekibimiztitlecolor {
  color: #4499f7 !important;
}
.texthakkimizdatitledark {
  color: #000;
  font-weight: 700;
}
.kariyernedensekomtitle {
  font-weight: 300;
  color: #fff;
}
.mb100 {
  margin-bottom: 100px !important;
}
.bg-cover-section {
  background-image: url("./../img/hakkimizda/bg-lager.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 70vh; /* Ekranın tamamını kaplaması için */
  display: flex; /* İçeriği dikey olarak ortalamak için */
  flex-direction: column;
  justify-content: center;
  background-position-y: top;
}
.isortakdanger {
  background-color: #ed2937 !important;
}
.isortaklight {
  background-color: #595959 !important;
}
.isortaklight2 {
  background-color: #8c8c8c !important;
}
.fw-12 {
  font-size: 12px !important;
}
.textlineheight {
  line-height: 16px;
}
.sdbg {
  background-color: #f3f3f3 !important;
}
.partner-logo {
  filter: grayscale(100%) !important; /* Başlangıçta siyah beyaz */
  transition: all 0.3s ease !important; /* Yumuşak geçiş efekti */
}

.partner-logo:hover {
  filter: grayscale(0%) !important; /* Renkli hale getir */
}

/* .pc-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-image {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  padding: 20px;
  border-radius: 10px;
} */

.pc-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pc-image {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: -8%;
  left: 34%;
  transform: translateX(-50%);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  opacity: 0.7;
}

.carousel-indicators .active {
  opacity: 2;
  background-color: #404f71; /* Aktif noktayı belirginleştirmek için renk */
}
.carousel-indicators [data-bs-target] {
  width: 14px !important;
  height: 12px !important;
}
.imgborder {
  position: relative;
  display: inline-block; /* Gerekirse görüntünün etrafında sınırlama yapar */
}

.imgborder::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Yüksekliği yarıya ayarlar */
  border-bottom: 12px solid #404f71; /* Alt kenar için bordür */
  border-left: 12px solid #404f71; /* Sol kenarın alt yarısı için bordür */
  border-right: 12px solid #404f71; /* Sağ kenarın alt yarısı için bordür */
  transition: border-color 0.3s ease; /* Geçiş animasyonu */
  opacity: 2;
}

.imgborder:hover::after {
  border-color: #fff; /* Hover durumunda renk değiştirir */
}

/*anasayfa css*/
.etkinliktitle1 {
  color: #7f7f7f;
}
.carousel-inner img {
  object-fit: cover; /* Görseli düzgün yerleştirir */
}

.silik-goruntu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0.55) 91%
  );
  z-index: 2;
  pointer-events: none;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #007bff;
}

.carousel-indicators .active {
  background-color: #0056b3;
}

.paginationposition {
  bottom: -70px !important;
}
.ekipbg {
  background-image: url("./../img/kariyer/ekibimizbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  color: white;
}
.kariyercardbg {
  min-height: 170px;
}
.kariyercardtext {
  color: #3a5792 !important;
}
.kariyercardbg2 {
  border: 2px solid #4499f7 !important;
  min-height: 170px;
}
.kariyercardtext2 {
  color: #4499f7 !important;
}
.kariyercardbg3 {
  border: 2px solid #318590 !important;
  min-height: 170px;
}
.kariyercardtext3 {
  color: #318590 !important;
}

.kariyercardbg4 {
  border: 2px solid #31bbca !important;
  min-height: 170px;
}
.kariyercardtext4 {
  color: #31bbca !important;
}
/*KARİYER*/

.kariyercardbg {
  display: flex;
  flex-direction: column; /* İçerikleri alt alta sıralar */
  justify-content: center; /* Dikeyde ortalama */
  align-items: center; /* Yatayda ortalama */
  text-align: center; /* Yazıyı ortalar */
  background-color: #333; /* Örnek arkaplan rengi */
}

.kariyercardbg img {
  margin-bottom: 10px; /* img ile p arasına boşluk bırakır */
}

.kariyercardbg2 {
  display: flex;
  flex-direction: column; /* İçerikleri alt alta sıralar */
  justify-content: center; /* Dikeyde ortalama */
  align-items: center; /* Yatayda ortalama */
  text-align: center; /* Yazıyı ortalar */
  background-color: #333; /* Örnek arkaplan rengi */
}

.kariyercardbg2 img {
  margin-bottom: 10px; /* img ile p arasına boşluk bırakır */
}

.kariyercardbg3 {
  display: flex;
  flex-direction: column; /* İçerikleri alt alta sıralar */
  justify-content: center; /* Dikeyde ortalama */
  align-items: center; /* Yatayda ortalama */
  text-align: center; /* Yazıyı ortalar */
  background-color: #333; /* Örnek arkaplan rengi */
}

.kariyercardbg3 img {
  margin-bottom: 10px; /* img ile p arasına boşluk bırakır */
}

@media (max-width: 500px) {
  .mobilscreenpd {
    padding: 30px !important;
  }
}

@media (max-width: 767px) {
  .mactopsize {
    margin-top: 8px !important;
  }
}
@media (max-width: 500px) {
  .mactopsize {
    margin-top: 24px !important;
  }
  .play-button3 {
    width: 40px !important;
    height: 40px !important;
  }
  .play-button3 i {
    width: 40px !important;
    height: 40px !important;
  }
}
@media (max-width: 375px) {
  .mactopsize {
    margin-top: 6px !important;
  }
}

.shadow2 {
  transition: box-shadow 0.3s ease; /* Geçiş efekti */
  overflow: hidden; /* İçerik taşmasını engeller */
}

.shadow2:hover {
  box-shadow: 0px 0px 50px rgba(57, 110, 243, 0.5); /* %50 opaklık ile mavi */
}

/*BLOG HOVER */
/* Özel blog kutusu sınıfı */
.custom-blog-card {
  transition: background-color 0.3s ease;
}

.custom-blog-card:hover {
  background-color: #f1f1f1; /* Arka plan rengi hafif gri */
}

/* Başlık hover efekti */
.custom-blog-title {
  transition: color 0.3s ease;
  color: #212529; /* Varsayılan başlık rengi */
}

.custom-blog-card:hover .custom-blog-title {
  color: #1857be; /* Bootstrap'in birincil rengi: Mavi */
}

/* "Devamını Oku" bağlantısı hover efekti */
.custom-blog-link {
  color: #6c757d; /* Bootstrap gri tonu */
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-blog-card:hover .custom-blog-link {
  color: #1857be; /* Bootstrap'in success yeşili */
  font-weight: 700;
}

/*BLOG HOVER */

@media (min-width: 1920px) {
  .mobilscrennwolk {
    display: none !important;
  }
}
.denemefoto {
  object-fit: contain !important;
  max-width: 100% !important;
  height: auto !important;
}
.wolkbg {
  background-color: #e8eff5;
}
.downcolor {
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  -webkit-background-clip: text; /* Gradient'i sadece metne uygula */
  -webkit-text-fill-color: transparent; /* Metin rengini şeffaf yap */
  display: inline-block; /* Gradient uygulanırken düzgün görünsün */
}

/* Genel Stil */
/* Kart Genel Stili */
.card-item {
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.5s ease;
  overflow: hidden;
}

/* Kart İçeriğini İlk Başta Gizle */
.card-content {
  max-height: 0; /* Yüksekliği gizle */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  padding: 0 10px; /* Açılırken yumuşak bir padding geçişi */
  color: #fff;
}

/* Kart Açıldığında */
.card-item.expanded .card-content {
  max-height: 150px; /* Açıklamanın görünür yüksekliği */
  padding: 10px;
}

/* Expanded Kart Genişletme */
.card-item.expanded {
  flex: 0 0 40%;
  max-width: 25%;
}

/* Genişleyen Kart İçeriğini Göster */

.pb100 {
  padding-bottom: 100px !important;
}

.imghikaye {
  width: 100%; /* Genişliği ekrana tam sığdır */
  height: auto; /* Oranları koru */
  object-fit: contain; /* Görüntüyü bozmadan içeriye sığdır */
  max-height: 100vh; /* Maksimum yükseklik belirle (isteğe bağlı) */
}

/*play buton*/
.testimonial-item {
  position: relative; /* Konumlandırma referansı */
}

/* Play Butonu */
.play-button {
  position: absolute;
  top: 50%;
  left: 85%;
  transform: translate(-50%, -50%);
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%; /* Yuvarlak buton */
  width: 50px; /* Buton boyutu */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0px rgba(44, 91, 255, 0.6); /* Hafif gölge efekti */
  animation: pulse 2s infinite; /* Yanıp sönen efekt */
}

/* Play İkonu */
.play-button i {
  color: #fff; /* Play simgesi beyaz */
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%;
  width: 50px; /* İç yuvarlağın boyutu */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem; /* Play simgesi büyüklüğü */
}

/* Animasyon - Yanıp Sönen Dalga Efekti */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 91, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(44, 91, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(44, 91, 255, 0);
  }
}

.playbuttontext {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/*kariyer play size*/
.play-button2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%; /* Yuvarlak buton */
  width: 80px; /* Buton boyutu */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0px rgba(44, 91, 255, 0.6); /* Hafif gölge efekti */
  animation: pulse 2s infinite; /* Yanıp sönen efekt */
}

/*kariyer play size*/
.play-button2 i {
  color: #fff; /* Play simgesi beyaz */
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%;
  width: 80px; /* İç yuvarlağın boyutu */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem; /* Play simgesi büyüklüğü */
}

/*mac play size*/
.play-button3 {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%; /* Yuvarlak buton */
  width: 60px; /* Buton boyutu */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0px rgba(44, 91, 255, 0.6); /* Hafif gölge efekti */
  animation: pulse 2s infinite; /* Yanıp sönen efekt */
}

/*mac play size*/
.play-button3 i {
  color: #fff; /* Play simgesi beyaz */
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%;
  width: 60px; /* İç yuvarlağın boyutu */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem; /* Play simgesi büyüklüğü */
}

/*hakkimizda 30 yıl button*/
.play-button4 {
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%; /* Yuvarlak buton */
  width: 60px; /* Buton boyutu */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0px rgba(44, 91, 255, 0.6); /* Hafif gölge efekti */
  animation: pulse 2s infinite; /* Yanıp sönen efekt */
}

/*mac play size*/
.play-button3 i {
  color: #fff; /* Play simgesi beyaz */
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%;
  width: 60px; /* İç yuvarlağın boyutu */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem; /* Play simgesi büyüklüğü */
}

.play-button5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
  border-radius: 50%; /* Yuvarlak buton */
  width: 50px; /* Buton boyutu */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0px rgba(44, 91, 255, 0.6); /* Hafif gölge efekti */
  animation: pulse 2s infinite; /* Yanıp sönen efekt */
  }

  .play-button5 i {
    color: #fff; /* Play simgesi beyaz */
    background: rgb(57, 110, 243);
    background: linear-gradient(
      90deg,
      rgba(57, 110, 243, 1) 0%,
      rgba(39, 77, 167, 1) 100%
    );
    border-radius: 50%;
    width: 50px; /* İç yuvarlağın boyutu */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem; /* Play simgesi büyüklüğü */
    }

/* Resim hover efect */
.image-container:hover .event-image {
  content: url("../img/anasayfa/etkinlik2.png"); /* Hover sırasında görsel değiştir */
}
.image-container2:hover .event-image {
  content: url("../img/anasayfa/etkinlik3.png"); /* Hover sırasında görsel değiştir */
}
.image-container3:hover .event-image {
  content: url("../img/anasayfa/etkinlik1.png"); /* Hover sırasında görsel değiştir */
}

/* Resim hover efect */

/*RED PAGE*/
.redpagecolor {
  background-color: #fff;
}
.redpagecolor:hover {
  background-color: #daedff;
}
/*RED PAGE*/

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00b3ca !important;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, rgb(0 171 255), transparent 85%);
  opacity: 1;
}
.carousel-indicators .active {
  background-color: #00b3ca;
}
.carousel-indicators [data-bs-target] {
  background-color: #00b3ca;
}
.pt15 {
  padding-top: 45px !important;
}
.mb-40 {
  margin-bottom: -50px !important;
}
.headerbuttonbg {
  background: rgb(57, 110, 243);
  background: linear-gradient(
    90deg,
    rgba(57, 110, 243, 1) 0%,
    rgba(39, 77, 167, 1) 100%
  );
}

.fly-image {
  position: absolute;
  bottom: 20px; /* Aşağıdan mesafe */
  right: 0; /* Sağda, container'a yapışık */
}

.fly-image img {
  width: 100%; /* Görüntüyü tam genişlikte tutar */
}

/* Hover efekti ve stil sadece #circle1 için geçerli olacak */
/* #circle1:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
} */
#circle1:hover {
  transform: translateY(-5px); /* Hafif yukarı kaydır */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.879); /* Daha belirgin gölge */
  transition: all 0.3s ease; /* Geçiş efekti */
}
/* .sekombg {
  background-image: url("../img/anasayfa/gunlukbg.png");
  background-position: start;
  background-repeat: no-repeat;
  height: 695px;
} */

@media (min-width: 1026px) {
  .sekombg {
    background-image: url("../img/anasayfa/gunlukbg.png");
    background-position: start;
    background-repeat: no-repeat;
    height: 625px;
  }
}
@media (max-width: 1025px) {
  .mobilscreenpt100 {
    padding-top: 0px !important;
  }
}

@media (max-width: 575px) {
  .mobilscreenptiletisim100 {
    margin-top: -100px !important;
  }
}

.mobilscreenpt100 {
  padding-top: 60px;
}

/**ekibimiz*/
.bg-container {
  position: relative; /* Arka planın içeriklerin referans noktası olmasını sağlar */
}

.bg-container img {
  margin-bottom: 20px; /* Resim ile metin arasındaki mesafeyi ayarlar */
}

.bg-container h4,
.bg-container p {
  text-align: center;
}

@media (max-width: 768px) {
  .bg-container {
    background-size: contain; /* Arka plan tam kapsar */
    background-position: center; /* Orta nokta sabitlenir */
    height: auto; /* Yüksekliği içeriğe göre ayarlar */
    min-height: 300px; /* Minimum yükseklik belirlenir */
    background-repeat: no-repeat;
  }
}
/**ekibimiz*/

/**çözümlerimiz*/

/* .scrollable-tabs {
  overflow-x: auto;
  white-space: nowrap;
}

.scrollable-tabs .nav-tabs {
  display: inline-flex;
  flex-wrap: nowrap;
}

.scrollable-tabs .nav-item {
  flex: 0 0 auto;
}

.nav-tabs .nav-link {
  text-align: center;
  min-width: 100px;
}

.scrollable-tabs::-webkit-scrollbar {
  display: none;
} */

.scrollable-tabs-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* Taşmayı gizler */
}

.scrollable-tabs {
  display: flex;
  overflow-x: auto; /* Taşan içeriği yatay kaydırılabilir yapar */
  scroll-behavior: smooth; /* Yumuşak kaydırma */
  -webkit-overflow-scrolling: touch; /* Mobil cihazlarda doğal kaydırma */
  width: 100%;
  gap: 10px; /* Sekmeler arası boşluk */
}

.nav-tabs {
  display: flex;
  flex-wrap: nowrap; /* Sekmelerin aynı satırda kalmasını sağlar */
}

.nav-tabs .nav-item {
  flex: 0 0 calc(100% / 6); /* Aynı anda 6 öğe görünür */
  text-align: center;
  min-width: 150px; /* Minimum genişlik ayarı */
}

.nav-tabs .nav-link {
  text-align: center;
}

.scroll-left,
.scroll-right {
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
}

.scroll-left {
  left: 0; /* Sol tarafta */
}

.scroll-right {
  right: 0; /* Sağ tarafta */
}

.scroll-left:disabled,
.scroll-right:disabled {
  opacity: 0.5;
  pointer-events: none; /* Tıklamayı devre dışı bırakır */
}

.scrollable-tabs::-webkit-scrollbar {
  height: 6px; /* Kaydırma çubuğu yüksekliği */
}

.scrollable-tabs::-webkit-scrollbar-thumb {
  background: #ccc; /* Kaydırma çubuğu rengi */
  border-radius: 4px; /* Kaydırma çubuğu yuvarlak köşeler */
}

.scrollable-tabs::-webkit-scrollbar-thumb:hover {
  background: #555; /* Kaydırma çubuğu üzerine gelindiğinde rengi */
}

/*animasyon*/
.aos-rotate-multiple[data-aos="flip-left"] {
  animation: rotate-multiple 2s ease-in-out; /* 3 tur döner */
}

@keyframes rotate-multiple {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1080deg); /* 3 tam tur */
  }
}

/*hakkımızda card*/

/* Genel Kart Yapısı */
.flip-card {
  width: 100%; /* Kart genişliği */
  height: 300px; /* Kart yüksekliği */
  perspective: 1000px; /* 3D efekt için bakış açısı */
}

/* Kartın İç Yapısı */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d; /* 3D dönüşüm etkin */
  transition: transform 0.6s ease-in-out; /* Animasyon süresi */
}

/* Ön Yüz */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* Arka yüz görünmez */
  top: 0;
  left: 0;
  border-radius: 10px; /* Hafif yuvarlak köşeler */
}

/* Ön Yüz Stil */
.flip-card-front {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2; /* Ön yüz üste */
}

/* Arka Yüz Stil */
.flip-card-back {
  transform: rotateY(180deg); /* Ters dönme efekti */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

/* Hover Durumu */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg); /* Kartı döndür */
}
.servisicontext {
  color: #0047ba;
}

/*imlec*/
/* .custom-cursor {
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1px solid #157fe9;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.custom-cursor::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #157fe9;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* Özel İmleç (Normal Durum) */
/* .custom-cursor {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid #157fe9;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: transform 0.2s ease-out, background 0.2s ease-out;
}


.cursor-hover {
  width: 40px;
  height: 40px;
  background: rgba(21, 127, 233, 0.2);
  background-color: #157fe9a5;
} */
.custom-cursor {
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1px solid #157fe9;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  /* transition: transform 0.2s ease-out, background 0.2s ease-out; */
  transition: transform 0.2s ease-out, background 0.3s ease-out,
    opacity 0.3s ease-out;
}

/* İmlecin ortasına küçük nokta ekleme */
.custom-cursor::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #157fe9;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-out; /* Yumuşak kaybolma */
}
/* İmleç büyüdüğünde (Nokta Kaybolur) */
.cursor-hover::after {
  opacity: 0;
}
/* İmleç büyüdüğünde */
.cursor-hover {
  width: 40px;
  height: 40px;
  background: rgba(21, 127, 233, 0.2);
  background-color: #c5d6ffbc;
  border: 1px solid #c5d6ffbc;
  transform: translate(-50%, -50%) scale(1.5); /* Yumuşak büyüme efekti */
}
/*imlec*/

/*kariyer page*/
.bluetextkariyer {
  color: #84a1f3 !important;
}
.blue2textkariyer {
  color: #9cd1f6 !important;
}
.orangetextkariyer {
  color: #e3ab5c !important;
}
.dangertextkariyer {
  color: #da8185 !important;
}
.pingtextkariyer {
  color: #d898ee !important;
}
.greentextkariyer {
  color: #76d6ad !important;
}
/* .blueborderkariyer {
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(
      to bottom,
      #84a1f3,
        rgba(132, 161, 243, 0.4)
    )
    1;
} */
.blueborderkariyer {
  position: relative;
  border: 2px solid transparent; /* Transparan kenarlık */
  border-radius: 16px; /* Kenarların yuvarlatılması */
  background: linear-gradient(white, /* İç alan beyaz */ white) padding-box,
    linear-gradient(
        to bottom,
        #84a1f3,
        /* Üst kenarlar için renk */ rgba(132, 161, 243, 0.4)
          /* Alt kenar için şeffaflık */
      )
      border-box; /* Border için gradient */
}
.orangeborderkariyer {
  position: relative;
  border: 2px solid transparent; /* Transparan kenarlık */
  border-radius: 16px; /* Kenarların yuvarlatılması */
  background: linear-gradient(white, /* İç alan beyaz */ white) padding-box,
    linear-gradient(
        to bottom,
        #e3ab5c,
        /* Üst kenarlar için renk */ rgba(227, 171, 92, 0.4)
          /* Alt kenar için şeffaflık */
      )
      border-box; /* Border için gradient */
}
.dangerborderkariyer {
  position: relative;
  border: 2px solid transparent; /* Transparan kenarlık */
  border-radius: 16px; /* Kenarların yuvarlatılması */
  background: linear-gradient(white, /* İç alan beyaz */ white) padding-box,
    linear-gradient(
        to bottom,
        #da8185,
        /* Üst kenarlar için renk */ rgba(159, 125, 121, 0.4)
          /* Alt kenar için şeffaflık */
      )
      border-box; /* Border için gradient */
}

.blue2borderkariyer {
  position: relative;
  border: 2px solid transparent; /* Transparan kenarlık */
  border-radius: 16px; /* Kenarların yuvarlatılması */
  background: linear-gradient(white, /* İç alan beyaz */ white) padding-box,
    linear-gradient(
        to bottom,
        #9cd1f6,
        /* Üst kenarlar için renk */ rgba(156, 209, 246, 0.4)
          /* Alt kenar için şeffaflık */
      )
      border-box; /* Border için gradient */
}
.pingborderkariyer {
  position: relative;
  border: 2px solid transparent; /* Transparan kenarlık */
  border-radius: 16px; /* Kenarların yuvarlatılması */
  background: linear-gradient(white, /* İç alan beyaz */ white) padding-box,
    linear-gradient(
        to bottom,
        #d898ee,
        /* Üst kenarlar için renk */ rgba(216, 152, 238, 0.4)
          /* Alt kenar için şeffaflık */
      )
      border-box; /* Border için gradient */
}
.greenborderkariyer {
  position: relative;
  border: 2px solid transparent; /* Transparan kenarlık */
  border-radius: 16px; /* Kenarların yuvarlatılması */
  background: linear-gradient(white, /* İç alan beyaz */ white) padding-box,
    linear-gradient(
        to bottom,
        #76d6ad,
        /* Üst kenarlar için renk */ rgba(118, 214, 173, 0.4)
          /* Alt kenar için şeffaflık */
      )
      border-box; /* Border için gradient */
}
.blogtitlecolor {
  color: #0c2e8a;
  font-weight: 600;
}
.blogtitlecolor2 {
  color: #0c2e8a;
  font-weight: 600;
}
.fw-23 {
  font-size: 23px !important;
}

.toolbox2 {

  .toolboxLine {
    height: 2px;
    background: url("../img/servis/toolbox_line.png") no-repeat center center;
    margin: 3rem;
  }

  .toolboxGrid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;

    .rowItem {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .item {
      width: auto;

      .roundedBox {
        padding-inline: 2rem;
        border-radius: 130px;
        min-height: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;

        &.styleBlue {
          --color: #3A5792;
          --border: #6585C7;
        }

        &.styleGreen {
          --color: #5FB9C8;
          --border: #8BDCE9;
        }

        background-color: var(--color);
        box-shadow: inset 0px -4px 0 var(--border);
        border: 1px solid var(--color);

        &:hover {
          box-shadow: none !important;
          transform: translateY(4px) !important;
        }
      }
    }

    @media (width < 992px) {
      .rowItem {
        display: contents;
      }

      flex-wrap: wrap;
      flex-direction: row;
    }

    @media (width < 480px) {
      .item {
        width: 45%;

        .roundedBox {
          max-height: 100px;
          padding-inline: 1rem;
          padding-block: 1rem;
        }
      }
    }

    @media (width < 380px) {
      .item {
        .roundedBox {
          border-radius: 20px;
        }
      }
    }
  }
}

.colButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  .items3Border {
    position: relative;
    height: 39px;
    font-size: 14px;
    padding-inline: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    .linear {
      position: absolute;
      left: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, #A9B9F0, #456BE5);
      opacity: .2;
      border-radius: 30px;
    }

    &:before {
      content: "";
      width: calc(100% - .4rem);
      height: calc(100% - .4rem);
      background: #E4EDF3;
      border-radius: 30px;
      border: 1px solid #243777;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
    }
  }

  @media (width < 381px) {
    .colButton {
      width: 100%;

      .items3Border {
        justify-content: flex-start;
      }
    }
  }
}


.bizFlex {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px;
  gap: 30px;
  justify-content: center;
  padding-top: 75px;
}

.bizFlex .bizArea .bizText {
  padding: 25px;
}

.bizFlex .bizArea .bizText h4{
  color: #1F3157;
  font-size: 24px;
}

.bizFlex .bizArea .bizText p{
  color: #43525D;
  font-size: 14px;
}

.bizFlex .bizArea img {
  width: 100%;
}

@media (max-width: 992px) {
  .hero .info h2 {
    font-size: 36px;
  }
  .bizFlex {
    grid-template-columns: auto;
  }
}

#contact-form {
  scroll-margin-top: 100px; /* Header yüksekliğine göre ayarlayın (ör: 80, 90, 100) */
}
/* ===== CUSTOM POPUP ===== */
#custom-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease;
}

#custom-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Overlay */
#custom-popup .custom-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Content */
#custom-popup .custom-popup-content {
  position: relative;
  max-width: 600px;
  width: 92%;
  margin: 6vh auto;
  background: #fff;
  padding: 24px;
  border-radius: 8px;
}

/* Close */
#custom-popup .custom-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
