/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Aug 15 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", 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: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2a74ea;
  /* 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: #0b0b0b;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --footer-background-color: #0e0e0e;
}

/* 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: #000000;
  /* The default color of the main navmenu links */
  --nav-hover-color: var(--accent-color);
  /* 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: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(--accent-color);
  /* 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: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: radial-gradient(circle at top right, rgba(42, 116, 234, 0.03), transparent 40%),
    radial-gradient(circle at bottom left, rgba(42, 116, 234, 0.03), transparent 40%),
    var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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);
  letter-spacing: -0.01em;
}

p {
  line-height: 1.6;
}

/* 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 {
  --background-color: #ffffff;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s all;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Neon Demo Button - Enhanced */
.btn-demo-neon {
  color: #fff !important;
  background: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 15px rgba(42, 116, 234, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  animation: neon-breathing-strong 2s infinite ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-demo-neon:hover {
  background: var(--accent-color);
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0 30px rgba(42, 116, 234, 0.8), 0 0 50px rgba(42, 116, 234, 0.4);
}

@keyframes neon-breathing-strong {
  0% {
    box-shadow: 0 0 10px rgba(42, 116, 234, 0.4), 0 0 20px rgba(42, 116, 234, 0.2);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 25px rgba(42, 116, 234, 0.7), 0 0 40px rgba(42, 116, 234, 0.3);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 10px rgba(42, 116, 234, 0.4), 0 0 20px rgba(42, 116, 234, 0.2);
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-buttons {
    order: 2;
    margin-right: 15px;
    display: flex;
    gap: 8px;
  }

  .header .btn-getstarted,
  .btn-demo-neon {
    padding: 8px 14px;
    font-size: 12px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 575px) {
  .header .header-buttons {
    margin-right: 10px;
    gap: 5px;
  }

  .header .btn-getstarted {
    display: none;
    /* Mobilde sadece Demo butonu kalsın yer kazanmak için */
  }

  .btn-demo-neon {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .header .logo img {
    max-height: 28px;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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);
    font-weight: 400;
  }

  .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: 0;
    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 {
    background-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 auto 20px;
    /* Alttan 20px yerine auto yaparak menüyü küçülttüm */
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    max-height: 80vh;
    /* Ekranın %80'ini geçmesin */
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }

  .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), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

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

  .navmenu .active i,
  .navmenu .active:focus i {
    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: 26px;
    /* 32px'den 26px'e küçültüldü */
    top: 18px;
    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: rgba(255, 255, 255, 0.7);
  background: #0a0a0a;
  font-size: 14px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .footer-top {
  padding: 60px 0 30px;
  /* Padding azaltıldı */
  background: linear-gradient(to bottom, rgba(42, 116, 234, 0.02), transparent);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 20px;
}

.footer .footer-about .logo img {
  max-height: 45px;
}

.footer .footer-about p {
  font-size: 15px;
  line-height: 1.7;
}

.footer .social-links a {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 12px;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
  color: #ffffff;
  background-color: var(--accent-color);
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(42, 116, 234, 0.4);
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.65);
  transition: 0.3s;
  font-weight: 400;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer .footer-contact p {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.footer .footer-contact a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer .footer-top {
    padding: 40px 0 20px;
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links ul li {
    justify-content: center;
  }

  .footer .social-links {
    justify-content: center;
  }

  .footer .footer-about .logo {
    justify-content: center;
  }
}

.footer .copyright strong {
  color: rgba(255, 255, 255, 0.6);
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  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 {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.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;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.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);
  padding: 80px 0;
  /* Masaüstü için varsayılan */
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 768px) {

  section,
  .section {
    padding: 50px 0;
    /* Mobilde padding azaltıldı */
  }
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

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

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

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

.hero p {
  margin: 10px 0 0 0;
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-cta-wrapper {
  margin-top: 60px;
  text-align: center;
}

.hero .col {
  display: flex;
  flex-direction: column;
}

.hero .icon-box {
  flex: 1;
}

.hero .icon-box {
  padding: 30px 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: 160px;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
  transition: 0.3s;
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 18px;
  line-height: 24px;
}

.hero .icon-box h3 a {
  color: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(42, 116, 234, 0.5);
  background: rgba(42, 116, 234, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(42, 116, 234, 0.2);
}

.hero .icon-box:hover i {
  transform: scale(1.1);
  color: #ffffff;
  text-shadow: 0 0 10px var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: #ffffff;
}

/* Neon ERP Card Styles */
.hero .icon-box-erp {
  background: rgba(42, 116, 234, 0.05);
  border: 2px solid var(--accent-color) !important;
  box-shadow: 0 0 15px rgba(42, 116, 234, 0.4), inset 0 0 10px rgba(42, 116, 234, 0.2);
  animation: erp-pulse 2s infinite alternate ease-in-out;
  position: relative;
  overflow: hidden;
}

.hero .icon-box-erp i {
  color: var(--accent-color) !important;
  text-shadow: 0 0 8px rgba(42, 116, 234, 0.8);
}

.hero .icon-box-erp h3 a {
  color: #ffffff !important;
  text-shadow: 0 0 5px rgba(42, 116, 234, 0.5);
  font-weight: 800;
}

@keyframes erp-pulse {
  0% {
    box-shadow: 0 0 10px rgba(42, 116, 234, 0.3), inset 0 0 5px rgba(42, 116, 234, 0.1);
    transform: scale(1);
  }

  100% {
    box-shadow: 0 0 25px rgba(42, 116, 234, 0.7), inset 0 0 15px rgba(42, 116, 234, 0.3);
    transform: scale(1.03);
  }
}

.hero .icon-box-erp::before {
  content: "YENİ";
  position: absolute;
  top: 15px;
  right: -31px;
  background: #ff0055;
  color: white;
  font-size: 11px;
  font-weight: 800;
  width: 100px;
  text-align: center;
  padding: 3px 0;
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
  z-index: 5;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/* Clients – scaled logolar için daha yüksek alan */
.clients .swiper {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 140px;
  /* ekstra dikey alan */
}

.clients .swiper-slide {
  height: 120px;
  /* temel slide yüksekliği */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .clients .swiper-slide {
    height: 150px;
  }
}

@media (min-width: 1200px) {
  .clients .swiper-slide {
    height: 180px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

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

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 50px 25px;
  /* 60px'den 50px'e */
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 35px 20px;
  }

  .services .service-item h3 {
    font-size: 18px;
  }

  .services .service-item .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}

.services .service-item .icon {
  background: rgba(42, 116, 234, 0.05);
  color: var(--accent-color);
  margin: 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
}

.services .service-item .icon i {
  font-size: 32px;
  transition: 0.4s;
  color: var(--accent-color);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 0 0 15px 0;
  font-size: 20px;
  transition: 0.3s;
  color: var(--heading-color);
}

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

.services .service-item p {
  line-height: 1.6;
  font-size: 14.5px;
  color: #666;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  border-color: var(--accent-color);
}

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

.services .service-item:hover .icon i {
  color: #ffffff;
  transform: rotateY(360deg);
}

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 45px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: #ffffff;
  border: 2px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(42, 116, 234, 0.4);
}

.call-to-action .cta-btn:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(42, 116, 234, 0.5);
}

/*--------------------------------------------------------------
# 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: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-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 0 10px 0;
  }
}

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

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  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: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 35px 25px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(42, 116, 234, 0.12);
  border-color: var(--accent-color);
}

.stats .stats-item i {
  font-size: 32px;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(42, 116, 234, 0.1), rgba(42, 116, 234, 0.05));
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: 0.4s;
}

.stats .stats-item:hover i {
  background: var(--accent-color);
  color: #ffffff;
  transform: rotateY(360deg);
}

.stats .stats-item h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.stats .stats-item p {
  font-size: 14px;
  color: #777;
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stats .stats-item p strong {
  color: var(--default-color);
}

.stats .stats-item:hover i {
  background: var(--accent-color);
  color: #ffffff;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

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

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.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(--default-color), transparent 40%);
  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: 0 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 50%);
  opacity: 0.5;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact .info-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(42, 116, 234, 0.12);
  border-color: var(--accent-color);
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 28px;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.4s;
  margin-bottom: 20px;
  margin-right: 0 !important;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: #fff;
  transform: rotateY(180deg);
}

.contact .info-item h3 {
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.contact .info-item p a {
  color: inherit;
  transition: 0.3s;
}

.contact .info-item p a:hover {
  color: var(--accent-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.accent-color {
  color: var(--accent-color) !important;
}

/* About bölümündeki metinler arası boşluk */
.about .content h3+h4 {
  margin-top: 0.85rem;
  /* ~12px */
}

.about .content h4+h4 {
  margin-top: 0.85rem;
  /* ardışık h4'ler arası */
}

@media (min-width: 992px) {

  .about .content h3+h4,
  .about .content h4+h4 {
    margin-top: 1rem;
    /* büyük ekranlarda biraz daha ferah */
  }
}

/* Projects (Clients) carousel modern look */
.clients .projects-swiper {
  padding: 10px 6px 30px;
}

.clients .project-item {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.clients .project-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.clients .project-item img {
  width: 100%;
  height: 88px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .clients .project-item img {
    height: 100px;
  }
}

.section-title p.text-muted {
  margin-top: .25rem;
}

/* === Portfolio Cards Modern Style === */
:root {
  --accent-color: #0d8aa7;
  /* marka vurgu rengi (fallback) */
  --card-bg: #ffffff;
  --card-border: rgba(13, 138, 167, .14);
  --card-radius: 18px;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, .10);
  --card-shadow-hover: 0 18px 40px rgba(0, 0, 0, .16);
  --muted: #6b7280;
}

/* Kart kabı */
.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(13, 138, 167, .22);
}

/* Görsel alanı */
.portfolio-image {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, rgba(13, 138, 167, .06) 0%, rgba(13, 138, 167, .02) 100%);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* kırpma fazla gelirse contain yapabilirsin */
  display: block;
}

/* Hover’da hafif karartma */
.portfolio-card:hover .portfolio-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .18) 90%);
}

/* Görsel üzeri butonlar (göz/ok) */
.portfolio-overlay {
  position: static;
}

.portfolio-actions {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 12px;
}

.portfolio-actions .preview-link,
.portfolio-actions .details-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-color);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.portfolio-actions .details-link.ms-2 {
  margin-left: 0 !important;
}

.portfolio-actions .preview-link:hover,
.portfolio-actions .details-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}

.portfolio-actions i {
  font-size: 20px;
  line-height: 1;
}

/* Metin alanı */
.portfolio-content {
  padding: 20px 22px 22px;
}

.portfolio-content .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-color);
}

.portfolio-content h3 {
  margin: 8px 0 8px;
  font-weight: 700;
  font-size: 20px;
}

.portfolio-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Büyük ekranlarda hafif ferahlık */
@media (min-width: 992px) {
  .portfolio-content {
    padding: 22px 24px 24px;
  }
}

/*--------------------------------------------------------------
# nexR ERP Section
--------------------------------------------------------------*/
.nexr-erp-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  position: relative;
  overflow: hidden;
}

.erp-premium-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.erp-premium-badge.badge-urgent {
  background: rgba(255, 68, 68, 0.1);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.2);
  box-shadow: 0 0 10px rgba(255, 68, 68, 0.1);
}

.campaign-wrapper {
  margin-bottom: 35px;
  display: inline-block;
  text-align: center;
}

.campaign-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 65, 108, 0.4);
  border: none;
  animation: campaign-pulse 2s infinite ease-in-out;
}

.campaign-highlight .code-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
  opacity: 0.9;
}

.campaign-highlight .code-value {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.code-blink {
  animation: code-blink 1.5s infinite;
}

@keyframes code-blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.campaign-subtext {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes campaign-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 65, 108, 0.4);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(255, 65, 108, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(255, 65, 108, 0.4);
  }
}

.erp-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.1;
}

.erp-main-title span {
  color: var(--accent-color);
  position: relative;
}

.erp-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  line-height: 1.7;
}

.erp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.erp-feature-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.erp-feature-icon-wrapper {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.erp-feature-box:hover .erp-feature-icon-wrapper {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

.erp-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.erp-feature-text p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.erp-action-area {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.erp-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--default-color) !important;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
  width: fit-content;
}

.erp-secondary-link:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: var(--accent-color);
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

.erp-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(42, 116, 234, 0.2);
  width: fit-content;
}

.erp-primary-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(42, 116, 234, 0.3);
}

.erp-hint {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-style: italic;
}

/* ERP Visual Styles */
.erp-visual-container {
  position: relative;
  padding: 20px;
}

.erp-image-main-wrapper {
  position: relative;
  z-index: 1;
}

.erp-main-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 20px rgba(42, 116, 234, 0.1);
  transition: 0.5s;
}

.erp-main-img:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

.erp-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--heading-color);
  font-size: 0.9rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.erp-floating-card i {
  color: #28a745;
  font-size: 1.2rem;
}

.card-1 {
  top: 15%;
  left: -20px;
  animation: float-y 4s infinite ease-in-out;
}

.card-2 {
  bottom: 20%;
  right: -10px;
  animation: float-y 5s infinite ease-in-out reverse;
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 992px) {
  .erp-main-title {
    font-size: 2.2rem;
  }

  .erp-feature-grid {
    grid-template-columns: 1fr;
  }

  .erp-floating-card {
    display: none;
  }
}

/* Image Wrapper */
.erp-image-wrapper {
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.erp-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.08));
  animation: floatImage 5s ease-in-out infinite;
}

/* nexR ERP Action Area Mobile Fix */
@media (max-width: 991px) {
  .erp-action-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .erp-action-area .btn-demo-neon {
    width: 100%;
    max-width: 300px;
  }

  .erp-action-area .erp-secondary-link {
    margin: 0 !important;
  }

  .erp-premium-badge {
    margin: 0 auto 15px;
    display: table;
    /* Centers better when text-align is center */
  }

  .erp-main-title {
    text-align: center;
    font-size: 28px;
  }

  .erp-description {
    text-align: center;
  }

  .erp-feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .erp-feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .erp-feature-icon-wrapper {
    margin-bottom: 10px;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .nexr-erp-section {
    padding: 60px 0 40px;
  }

  .erp-logo-title {
    justify-content: center;
  }

  .erp-image {
    max-width: 600px;
    margin: 0 auto 30px;
    display: block;
  }

  .erp-content {
    text-align: center;
  }

  .erp-subtitle {
    text-align: center;
    margin-bottom: 24px;
  }

  .erp-feature-item {
    text-align: left;
  }

  .erp-cta-btn {
    display: inline-flex;
  }
}

@media (max-width: 576px) {
  .erp-title-text {
    font-size: 2rem;
  }

  .erp-logo-img {
    height: 34px;
  }

  .erp-feature-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .erp-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  color: #fff !important;
  background-color: #128c7e;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Success Message Enhancement */
.php-email-form .sent-message {
  display: none;
  background: linear-gradient(135deg, #059652 0%, #00bc7d 100%);
  color: #ffffff;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(5, 150, 82, 0.3);
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Optimizations */
@media (max-width: 991px) {
  .demo-hero {
    padding: 120px 0 60px !important;
    text-align: center !important;
  }

  .demo-hero .pe-lg-5 {
    padding-right: 0 !important;
    margin-bottom: 50px;
  }

  .campaign-wrapper {
    margin-bottom: 25px;
  }

  .demo-form-card {
    padding: 30px 20px !important;
  }

  .benefit-item {
    justify-content: center !important;
    text-align: left !important;
    max-width: 400px;
    margin: 0 auto 20px !important;
  }

  .whatsapp-float {
    bottom: 75px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}

/* ERP Features Modern Styling */
.erp-feature-image-card {
  position: relative;
  transition: all 0.5s ease;
  z-index: 1;
}

.erp-feature-image-card:hover {
  transform: scale(1.02);
}

.erp-feature-image-card img {
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.erp-badge-small {
  display: inline-block;
  padding: 6px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.check-icon-bg {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.erp-feature-modern-content:hover .check-icon-bg {
  background: var(--accent-color);
}

.erp-feature-modern-content:hover .check-icon-bg i {
  color: #fff !important;
}

.shadow-xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 991px) {
  .erp-feature-modern-content {
    text-align: center;
    padding: 0 !important;
  }

  .feature-checklist {
    display: inline-block;
    text-align: left;
  }

  .erp-feature-image-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Women Entrepreneur Campaign Section */
.women-campaign {
  padding: 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(121, 40, 202, 0.05) 0%, transparent 40%);
}

.campaign-box {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 500px;
}

.campaign-content h2 span {
  color: #a855f7;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.campaign-badge {
  background: rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.offer-boxes {
  display: flex;
  align-items: center;
}

.offer-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.offer-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: #a855f7;
}

.offer-title {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.offer-desc {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.offer-plus {
  font-size: 24px;
  font-weight: 300;
  color: #a855f7;
}

.campaign-img-wrapper img {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991.98px) {
  .campaign-img-wrapper {
    height: 350px;
  }

  .campaign-img-wrapper img {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}