/* Extracted from index.html <style> blocks without modification */

/* Head styles: font smoothing */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
}

/* Head styles: navbar opacity */
.navbar {
  opacity: 1; 
  transition: opacity 0.3s ease;
}

/* Head styles: solution, energy, nav expanded */
.solution_item-hover {
  opacity: 0;
}
.section-height{
 display:block;
}
.energy_content-left-card {
  transform-origin: top left; 
}
.energy_content-left-load {
  transform-origin: top left; 
}
.is--hover-item {
  transform-origin: center center; 
}
.is-expanded .nav_menu:hover{
  background: #0475FF;
  color: #FFFFFF;
}
.is-expanded .nav-logo-icon{
  color: #0475FF;
}
.is-expanded-mob .nav-logo-icon{
  color: #0475FF;
}
.is-expanded {
   background:#FFFFFF;
   color: black;
   padding-top: 0.25rem;
   padding-bottom: 0.25rem;
   margin-top: 1.25rem;
}
.is-expanded .nav_button{
  background: #061F3D;
  color: #FFFFFF;
}
.is-expanded .nav_button:hover{
  background: #0475FF;
  color: #FFFFFF;
}
.is-expanded .nav_menu-wrapper{
  box-shadow: none;
}

/* Head styles: mobile nav menu overrides */
@media (max-width: 991px) {
   .nav_menu {
    background-color: transparent !important;
    color: white !important;
  }
  .nav_menu:hover {
    background-color: transparent !important;
    color: white !important;
  }
}

/* Global styles (w-embed) */
/* Ensure all elements inherit the color from its parent */
a,
.w-input,
.w-select,
.w-tab-link,
.w-nav-link,
.w-nav-brand,
.w-dropdown-btn,
.w-dropdown-toggle,
.w-slider-arrow-left,
.w-slider-arrow-right,
.w-dropdown-link {
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}
/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
  input[type="file"]:focus-visible {
   outline: 0.125rem solid #4d65ff;
   outline-offset: 0.125rem;
}
/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}
/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
	margin-bottom: 0 !important;
}
/* Prevent all click and hover interaction with an element */
.pointer-events-off {
	pointer-events: none;
}
/* Enables all click and hover interaction with an element */
.pointer-events-on {
  pointer-events: auto;
}
/* Create a class of .div-square which maintains a 1:1 dimension of a div */
.div-square::after {
	content: "";
	display: block;
	padding-bottom: 100%;
}
/* Make sure containers never lose their center alignment */
.container-medium,.container-small, .container-large {
	margin-right: auto !important;
  margin-left: auto !important;
}
/* Apply "..." after 3 lines of text */
.text-style-3lines {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	line-clamp: 3; /* standard */
	-webkit-box-orient: vertical;
}
/* Apply "..." after 2 lines of text */
.text-style-2lines {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	line-clamp: 2; /* standard */
	-webkit-box-orient: vertical;
}
/* Adds inline flex display */
.display-inlineflex {
  display: inline-flex;
}
/* These classes are never overwritten */
.hide {
  display: none !important;
}
/* Remove default Webflow chevron from form select */
select{
  -webkit-appearance:none;
  appearance: none; /* standard */
}
@media screen and (max-width: 991px) {
    .hide, .hide-tablet {
        display: none !important;
    }
}
  @media screen and (max-width: 767px) {
  /* Extra bottom space below solutions section on mobile */
  .section_solution .padding-global {
    padding-bottom: clamp(52px, 12vw, 112px) !important; /* more space below */
  }
    .section_impact .impact_stats-item {
      border-left-width: 0;
      border-bottom: 2px solid #0d31bb; /* primary */
    }
  }

/* Impact stats: center icons and adjust spacing without breaking layout */
.section_impact .impact_stats-item .impact_icon {
  width: clamp(32px, 6vw, 56px);
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto; /* center icon without changing parent layout */
  margin-bottom: clamp(8px, 1.2vw, 14px);
}
.section_impact .impact_stats-item h3 {
  margin-top: 0.125rem; /* tighten space under icon */
}

/* Center headings and subtexts within impact stats */
.section_impact .impact_stats-item h3,
.section_impact .impact_stats-item .impact_stats-item-text {
  text-align: center;
}

/* Mobile layout: text left, big icon right (only mobile) */
@media screen and (max-width: 767px) {
  .section_impact .impact_stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section_impact .impact_stats-item .impact_icon {
    width: clamp(56px, 18vw, 96px);
    height: auto;
    margin: 0 0 0.5rem 0; /* icon above, then heading */
  }
  .section_impact .impact_stats-item h3,
  .section_impact .impact_stats-item .impact_stats-item-text {
    text-align: center;
  }
  .section_impact .impact_stats-item h3 { 
    margin-bottom: 0.25rem; 
  }
}

/* Desktop-only refinements for impact stats (better heading/subtext rhythm) */
@media screen and (min-width: 768px) {
  .section_impact .impact_stats-item h3 {
    text-wrap: balance;            /* nicer multi-line headings */
    margin-top: 0.25rem;           /* slight top spacing */
    margin-bottom: 0.25rem;        /* tighter gap to subtext */
  }
  .section_impact .impact_stats-item .impact_stats-item-text { 
    text-align: center; 
  }
  .section_impact .impact_stats-item .impact_stats-item-text .text-size-medium {
    max-width: 58ch;               /* readable line length */
    margin-left: auto;             /* center block */
    margin-right: auto;            /* center block */
    text-wrap: pretty;             /* smoother line breaks */
    line-height: 1.45;             /* tighter */
    margin-top: 0;                 /* no extra space above */
    margin-bottom: 0;              /* avoid extra trailing space */
  }
  /* ensure no unexpected margins on the wrapper */
  .section_impact .impact_stats-item .impact_stats-item-text { 
    margin-top: 0; 
    margin-bottom: 0; 
  }
  /* slightly tighter gap from heading to subtext */
  .section_impact .impact_stats-item h3 {
    margin-bottom: 0.1rem;          /* minimal gap */
  }
  /* remove any residual spacing on subtext wrapper and paragraph */
  .section_impact .impact_stats-item .impact_stats-item-text {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .section_impact .impact_stats-item .impact_stats-item-text .text-size-medium {
    line-height: 1.42;             /* tighter lines */
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Center and bold the animated headline block */
p[line="Animation"].text-size-xxxlarge.text-weight-medium {
  text-align: center;           /* ensure parent centers children */
  font-weight: 800;             /* bolder than medium */
  line-height: 1.1;             /* tighter for big display text */
  margin: 0 auto;               /* safe centering */
}

p[line="Animation"].text-size-xxxlarge.text-weight-medium .line {
  display: block;
  width: 100%;
  text-align: center;           /* reinforce centering per-line */
}

/* Center the action overline badge within the action card */
.action_content .action_overline {
  justify-content: center;  /* center dot + text horizontally */
  align-self: center;       /* override parent's align-items:flex-start */
  text-align: center;       /* ensure text is centered */
}
/* Solution heading typography and spacing */
.section_solution .solution_heading {
  margin-top: clamp(12px, 2vw, 28px) !important; /* move heading slightly down */
  margin-bottom: 0.5rem !important; /* keep component close below */
}
.section_solution .solution_heading .heading-2 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(28px, 5vw, 48px) !important; /* bigger, responsive */
}

/* Mobile-only: enlarge and center solution heading text */
@media screen and (max-width: 767px) {
  /* Push the whole block down using padding to avoid margin-collapsing */
  .section_solution .solution_component {
    padding-top: clamp(56px, 13vw, 104px) !important;
  }
  /* Also pad the inner wrapper to ensure consistent spacing across layouts */
  .section_solution .padding-section-large {
    padding-top: clamp(40px, 10vw, 80px) !important;
  }

  .section_solution .solution_heading {
    text-align: center !important;
    margin-top: 0 !important; /* use parent padding instead for reliable spacing */
    margin-bottom: 0.75rem !important;
  }
  .section_solution .solution_heading .heading_overline {
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: inline-flex;              /* shrink-wrap to content */
    flex-direction: column;            /* dot above, text below */
    align-items: center;               /* center both */
    gap: 6px;                          /* a bit more space */
    margin-bottom: 14px !important;    /* more breathing room before H2 */
  }
  .section_solution .solution_heading .heading_overline-dot {
    width: clamp(12px, 3.6vw, 18px) !important;
    height: clamp(12px, 3.6vw, 18px) !important;
    border-radius: 50%;
  }
  .section_solution .solution_heading .heading-2 {
    position: relative;
    font-size: 0 !important;            /* hide original text visually */
    line-height: 0 !important;
    margin-top: 0 !important;
    padding-inline: 8px;
    text-align: center !important;
  }
  .section_solution .solution_heading .heading-2::after {
    content: "Her Alana Özel\A Enerji Çözümlerimiz";
    display: block;
    white-space: pre-line;               /* respect \A as line break */
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
    font-weight: 600;
    font-size: clamp(24px, 8vw, 36px) !important;  /* larger on mobile */
    line-height: 1.2 !important;                    /* a bit more airy */
    letter-spacing: 0.005em;
    color: inherit;
    text-align: center;
  }
}

/* Action card: desktop-only typography and layout to keep mobile untouched */
@media screen and (min-width: 992px) {
  .section_action .action_content {
    max-width: 40rem !important; /* widen card on desktop only */
    margin-left: auto;            /* center the whole card block */
    margin-right: auto;           /* center the whole card block */
  }
  /* Main heading (first p) */
  .section_action .action_content p[line="Animation"].text-size-xxxlarge.text-weight-medium:nth-of-type(1) {
    font-weight: 700 !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    line-height: 1.1 !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 26ch;
    text-wrap: balance;
  }
  /* Subheading/body (second p) */
  .section_action .action_content p[line="Animation"].text-size-xxxlarge.text-weight-medium:nth-of-type(2) {
    font-weight: 400 !important;
    font-size: clamp(16px, 1.6vw, 20px) !important;
    line-height: 1.55 !important;
    text-align: center !important;      /* center subheading to match design */
    margin: 0.75rem auto 0 auto !important;
    max-width: 60ch;
  }
  /* CTA button alignment under text */
  .section_action .action_cta-wrap {
    margin-top: 1rem;
    display: flex !important;
    justify-content: center !important; /* center, then nudge slightly right */
    width: 100%; /* allow pushing to the right edge */
  }
  .section_action .action_cta-wrap > * { /* slight right shift from center */
    margin-left: 0 !important;
    transform: translateX(6px);
  }
  /* Remove auto-centering margins on the anchor/button inside the CTA wrap */
  .section_action .action_cta-wrap a,
  .section_action .action_cta-wrap .button {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Ensure CTA centered on all viewports without affecting other texts */
/* Base: center CTA across viewports */
.section_action .action_cta-wrap { 
  text-align: center; 
}
.section_solution .solution_heading .heading_overline {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
.section_solution .ke-hizmetler-bolumu {
  margin-top: 0 !important; /* ensure it hugs the heading */
}
/* Hizmetler: İkonları kart başlığının üstünde, boyutu etkilemeden göster */
.section_solution .ke-hizmetler-bolumu .ke-kart-detaylar {
  position: relative; /* pseudo-elem için referans */
  overflow: visible !important; /* rozet taşmaları kesilmesin */
}
/* Kart seviyesi de kesmesin */
.section_solution .ke-hizmetler-bolumu .ke-kart { overflow: visible !important; }
/* Tek pseudo-element: küçük beyaz rozet + içinde ortalı ikon */
.section_solution .ke-hizmetler-bolumu .ke-kart-detaylar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% - 2px);
  width: clamp(26px, 4vw, 40px); /* daha da küçük rozet */
  height: clamp(26px, 4vw, 40px);
  aspect-ratio: 1 / 1; /* tam daire oranı garantisi */
  /* İki katmanlı arka plan: ikon + rozet gradyanı */
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 68% 68%, 100% 100%; /* ikon rozetin içinde ortalı ve daha küçük */
  /* varsayılan olarak sadece rozet gradyanı, ikon nth-of-type ile eklenecek */
  background-image: none, radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%);
  border: 1px solid rgba(13, 49, 187, 0.08);
  border-radius: 50%;
  background-clip: padding-box; /* kenarlarda kesik hissini azalt */
  box-shadow: 0 4px 12px rgba(5, 16, 66, 0.12);
  z-index: 1;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.16));
}
/* ::before artık kullanılmıyor */
.section_solution .ke-hizmetler-bolumu .ke-kart-detaylar::before { content: none; }
/* Her kart için ilgili SVG eşlemesi */
.section_solution .ke-hizmetler-bolumu .ke-kart:nth-of-type(1) .ke-kart-detaylar::after { background-image: url('../images/kart-1.svg'), radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%); }
.section_solution .ke-hizmetler-bolumu .ke-kart:nth-of-type(2) .ke-kart-detaylar::after { background-image: url('../images/kart-2.svg'), radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%); }
.section_solution .ke-hizmetler-bolumu .ke-kart:nth-of-type(3) .ke-kart-detaylar::after { background-image: url('../images/kart-3.svg'), radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%); }
.section_solution .ke-hizmetler-bolumu .ke-kart:nth-of-type(4) .ke-kart-detaylar::after { background-image: url('../images/kart-4.svg'), radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%); }
.section_solution .ke-hizmetler-bolumu .ke-kart:nth-of-type(5) .ke-kart-detaylar::after { background-image: url('../images/kart-5.svg'), radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%); }
.section_solution .ke-hizmetler-bolumu .ke-kart:nth-of-type(6) .ke-kart-detaylar::after { background-image: url('../images/kart-6.svg'), radial-gradient(circle at 50% 45%, #ffffff 0%, #f5f7fc 70%, #e9eef9 100%); }
@media screen and (max-width: 767px) {
  .section_solution .ke-hizmetler-bolumu .ke-kart-detaylar::after {
    width: clamp(28px, 12vw, 46px);
    height: clamp(28px, 12vw, 46px);
    bottom: calc(100% - 2px);
    background-size: 70% 70%, 100% 100%;
  }
}
/* Action heading icon (desktop) */
.action_heading-icon {
  display: block;
  width: 56px;
  height: auto;
  margin: 0 auto 10px auto; /* centered above heading */
}
/* Ensure icon remains centered even if generic child margins are reset */
.section_action .action_content .action_heading-icon {
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Hide scroll-video CTA section on mobile only */
@media screen and (max-width: 767px) {
  .section_cta { display: none !important; }
  /* Show and slightly reduce the heading icon on mobile, centered */
  .action_heading-icon {
    display: block !important;
    width: 44px;
    margin: 0 auto 8px auto;
  }
}
/* Action card: mobile & tablet adjustments (≤991px) */
@media screen and (max-width: 991px) {
  /* Keep heading icon visible on tablet; base centering already applied */
  /* Center the whole card and limit readable width */
  .section_action .action_content {
    max-width: 96vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  /* Overline centered */
  .section_action .action_overline {
    justify-content: center;
    text-align: center;
  }
  /* Main heading (1st p) */
  .section_action .action_content p[line="Animation"].text-size-xxxlarge.text-weight-medium:nth-of-type(1) {
    font-weight: 700 !important;
    font-size: clamp(22px, 6.5vw, 32px) !important;
    line-height: 1.15 !important;
    text-align: center !important;
    max-width: 28ch;
    margin-left: auto !important;
    margin-right: auto !important;
    text-wrap: balance;
  }

  /* Subheading/body (2nd p) — bastırılmış satır aralığı ile yatayda geniş görünür */
  .section_action .action_content p[line="Animation"].text-size-xxxlarge.text-weight-medium:nth-of-type(2) {
    font-weight: 400 !important;
    font-size: clamp(14px, 4.1vw, 17px) !important;
    line-height: 1.45 !important; /* vertical compression */
    text-align: center !important;
    max-width: 60ch; /* more characters per line */
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;
  }
  /* CTA centered on mobile; remove any desktop nudge */
  .section_action .action_cta-wrap { display: flex; justify-content: center; }
  .section_action .action_cta-wrap > * { transform: none !important; }
}
/* Hide everything under "Her Alana Özel Enerji Çözümleri" until video scroll */
.section_solution .solution_content {
  display: none !important;
}
.section_solution .padding-section-large {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
  @media screen and (max-width: 479px) {
    .hide-mobile{
      display: none !important;
    }
}
.margin-0 {
  margin: 0rem !important;
}
.padding-0 {
  padding: 0rem !important;
}
.spacing-clean {
padding: 0rem !important;
margin: 0rem !important;
}
.margin-top {
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}
.padding-top {
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}
.margin-right {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  margin-left: 0rem !important;
}
.padding-right {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
  padding-left: 0rem !important;
}
.margin-bottom {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}
.padding-bottom {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}
.margin-left {
  margin-top: 0rem !important;
  margin-right: 0rem !important;
  margin-bottom: 0rem !important;
}
.padding-left {
  padding-top: 0rem !important;
  padding-right: 0rem !important;
  padding-bottom: 0rem !important;
}
.margin-horizontal {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}
.padding-horizontal {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}
.margin-vertical {
  margin-right: 0rem !important;
  margin-left: 0rem !important;
}
.padding-vertical {
  padding-right: 0rem !important;
  padding-left: 0rem !important;
}
/* Apply "..." at 100% width */
.truncate-width { 
		width: 100%; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
}
/* Removes native scrollbar */
.no-scrollbar {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none; 
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Color Schemes Controls (w-embed) */
/* Color Schemes Controls*/
.color-scheme-2 {
  --color-scheme-1--text: var(--color-scheme-2--text);
  --color-scheme-1--background: var(--color-scheme-2--background);
  --color-scheme-1--foreground: var(--color-scheme-2--foreground);
  --color-scheme-1--border: var(--color-scheme-2--border);
  --color-scheme-1--accent: var(--color-scheme-2--accent);
}
.color-scheme-3 {
  --color-scheme-1--text: var(--color-scheme-3--text);
  --color-scheme-1--background: var(--color-scheme-3--background);
  --color-scheme-1--foreground: var(--color-scheme-3--foreground);
  --color-scheme-1--border: var(--color-scheme-3--border);
  --color-scheme-1--accent: var(--color-scheme-3--accent);
}
.color-scheme-4 {
  --color-scheme-1--text: var(--color-scheme-4--text);
  --color-scheme-1--background: var(--color-scheme-4--background);
  --color-scheme-1--foreground: var(--color-scheme-4--foreground);
  --color-scheme-1--border: var(--color-scheme-4--border);
  --color-scheme-1--accent: var(--color-scheme-4--accent);
}
.color-scheme-5 {
  --color-scheme-1--text: var(--color-scheme-5--text);
  --color-scheme-1--background: var(--color-scheme-5--background);
  --color-scheme-1--foreground: var(--color-scheme-5--foreground);
  --color-scheme-1--border: var(--color-scheme-5--border);
  --color-scheme-1--accent: var(--color-scheme-5--accent);
}
.color-scheme-6 {
  --color-scheme-1--text: var(--color-scheme-6--text);
  --color-scheme-1--background: var(--color-scheme-6--background);
  --color-scheme-1--foreground: var(--color-scheme-6--foreground);
  --color-scheme-1--border: var(--color-scheme-6--border);
  --color-scheme-1--accent: var(--color-scheme-6--accent);
}
.color-scheme-7 {
  --color-scheme-1--text: var(--color-scheme-7--text);
  --color-scheme-1--background: var(--color-scheme-7--background);
  --color-scheme-1--foreground: var(--color-scheme-7--foreground);
  --color-scheme-1--border: var(--color-scheme-7--border);
  --color-scheme-1--accent: var(--color-scheme-7--accent);
}
.color-scheme-8 {
  --color-scheme-1--text: var(--color-scheme-8--text);
  --color-scheme-1--background: var(--color-scheme-8--background);
  --color-scheme-1--foreground: var(--color-scheme-8--foreground);
  --color-scheme-1--border: var(--color-scheme-8--border);
  --color-scheme-1--accent: var(--color-scheme-8--accent);
}
.color-scheme-9 {
  --color-scheme-1--text: var(--color-scheme-9--text);
  --color-scheme-1--background: var(--color-scheme-9--background);
  --color-scheme-1--foreground: var(--color-scheme-9--foreground);
  --color-scheme-1--border: var(--color-scheme-9--border);
  --color-scheme-1--accent: var(--color-scheme-9--accent);
}
.color-scheme-10 {
  --color-scheme-1--text: var(--color-scheme-10--text);
  --color-scheme-1--background: var(--color-scheme-10--background);
  --color-scheme-1--foreground: var(--color-scheme-10--foreground);
  --color-scheme-1--border: var(--color-scheme-10--border);
  --color-scheme-1--accent: var(--color-scheme-10--accent);
}
/* Inherit slider dot colors */
.w-slider-dot {
  background-color: var(--color-scheme-1--text);
  opacity: 0.20;
}
.w-slider-dot.w-active {
  background-color: var(--color-scheme-1--text);
  opacity: 1;
}
/* Override .w-slider-nav-invert styles */
.w-slider-nav-invert .w-slider-dot {
  background-color: var(--color-scheme-1--text) !important;
  opacity: 0.20 !important;
}
.w-slider-nav-invert .w-slider-dot.w-active {
  background-color: var(--color-scheme-1--text) !important;
  opacity: 1 !important;
}

/* Bottom style: split-char */
.split-char{display:inline-block;will-change:transform,opacity}

.cta-video_background:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Aşağıdan yukarıya doğru şeffaflığı azalan, akıllı bir gradyan katmanı */
  background: linear-gradient(to top, rgba(3, 13, 62, 1) 0%, transparent 60%);
  z-index: 1; /* Metnin arkasında, videonun önünde */
}

/* Metinlerin bu katmanın üzerinde kalması için */
.cta_content {
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------------------ */
/* CTA (section_cta) — Renk paleti ve tipografi uyarlaması     */
/* ------------------------------------------------------------ */
/* Poppins uygula ve metin/başlık renklerini palette göre ayarla */
.section_cta .cta_content,
.section_cta .cta_content * {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

/* Başlık (harf harf çıkan) */
.section_cta .text-style-allcaps {
  color: #efefef !important; /* light */
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(5, 16, 66, 0.55);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
}

/* CTA ikon (başlığın üstünde) */
.section_cta .cta-icon {
  display: inline-block;
  width: clamp(44px, 7vw, 84px);
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,0.35));
  opacity: 0.98;
}

@media (max-width: 991px) {
  .section_cta .cta-icon { margin-bottom: 10px; }
}

/* Video üstü gölge: CTA bölümüne özel, profesyonel sinematik overlay */
.section_cta .cta-video_background:after {
  /* Önce önceki arka planı kaldır, sonra katmanları uygula */
  background: none !important;
  background-image:
    /* Vinyet: kenarlarda koyulaşma */
    radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(0,0,0,0.60) 100%),
    /* Alt kısımdan okunabilirlik için koyu şerit */
    linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.00) 65%),
    /* Üstten çok hafif gölge */
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.00) 35%),
    /* Markaya çok hafif, neredeyse algılanmaz tint */
    linear-gradient(to top right, rgba(13,49,187,0.08), rgba(13,49,187,0.00));
}

/* Ek ön kaplama (HTML'de mevcut .video-overlay için): sade, nötr vinyet */
.section_cta .video-overlay {
  background-image:
    radial-gradient(ellipse at 50% 60%, rgba(0,0,0,0) 62%, rgba(0,0,0,0.50) 100%),
    linear-gradient(to top, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.00) 55%);
  opacity: 1 !important;
}

/* CTA buton (arka plan, metin, hover) */
.section_cta .button_sonuncu {
  background-color: #0d31bb !important; /* primary */
  color: #efefef !important;           /* light */
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(13, 49, 187, 0.36);
  border-radius: 9999px; /* pill */
  padding: 12px 22px;
}
.section_cta .button_sonuncu .button_text_son,
.section_cta .button_sonuncu .button-text,
.section_cta .button_sonuncu .button_text-3 {
  color: #efefef !important;
}
.section_cta .button_sonuncu:hover {
  background-color: #051042 !important; /* dark navy */
  color: #efefef !important;
  border-color: rgba(239, 239, 239, 0.35) !important;
  box-shadow: 0 12px 26px rgba(5, 16, 66, 0.45);
}

/* CTA buton: metin+ikon hizalama ve ikon animasyonu */
.section_cta .button_sonuncu .button-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section_cta .button_sonuncu .button-icon {
  display: inline-flex;
  line-height: 0;
  color: currentColor; /* icon = text color */
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0.95;
}

.section_cta .button_sonuncu:hover .button-icon {
  transform: translateX(4px);
  opacity: 1;
}

/* Küçük ekranlarda aralıkları biraz azalt */
@media (max-width: 991px) {
  .section_cta .button_sonuncu .button-text { gap: 8px; }
}

/* --- CTA Buton İyileştirmesi --- */
.button_sonuncu {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.button_sonuncu:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: #ffffff; /* Üzerine gelince beyaz bir çerçeve ekle */
}

/* ------------------------------------------------------------ */
/* Hero (video üstü metin) tipografi ve görünürlük iyileştirmesi */
/* ------------------------------------------------------------ */
/* Poppins zaten <head> altında yüklü. Burada kahraman alanını rafine ediyoruz. */
.section_hero, .hero-component, .hero_content {
  position: relative;
}

.section_hero .hero_content {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  gap: clamp(8px, 1.5vw, 18px);
  margin-bottom: 0 !important; /* webflow negatif marjini nötrle */
  padding-top: clamp(24px, 8vh, 120px); /* başlığı biraz aşağı indir */
}

.section_hero .hero_content-top,
.section_hero .hero-subtitle {
  align-items: center;
  text-align: center;
}

/* Başlık: daha büyük, daha sıkı satır aralığı, güçlü kontrast */
.section_hero .heading-style-h1-2 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  color: #efefef !important; /* light */
  font-weight: 700 !important;
  line-height: 1.08 !important; /* biraz daha ferah */
  font-size: clamp(28px, 5.2vw, 72px) !important; /* daha küçük, tek satıra sığması için */
  letter-spacing: -0.015em;
  text-shadow: 0 1px 10px rgba(5, 16, 66, 0.45), 0 0 1px rgba(0, 0, 0, 0.5);
  max-width: none;            /* tek satır için kısıtı kaldır */
  margin-inline: auto;        /* ortala */
  text-wrap: balance;         /* mümkünse dengeli kır */
  white-space: nowrap;        /* geniş ekranlarda yan yana */
}

/* Alt başlık: okunaklı, sakin ve ölçülü */
.section_hero .hero-subtitle-text {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  color: rgba(239, 239, 239, 0.92) !important; /* light-90 */
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.55;
  margin-top: 0.5rem;
  text-shadow: 0 1px 6px rgba(5, 16, 66, 0.45), 0 0 1px rgba(0, 0, 0, 0.45);
  max-width: 62ch;            /* paragraf genişliğini sınırla */
  margin-left: auto;
  margin-right: auto;
}

/* Mobil/Tablet için küçük ayarlar */
@media screen and (max-width: 767px) {
  .section_hero .hero_content { padding-top: clamp(16px, 6vh, 72px); }
  .section_hero .heading-style-h1-2 { 
    font-size: clamp(30px, 9.5vw, 44px) !important; /* mobilde daha görünür */
    line-height: 1.14 !important; 
    max-width: 18ch; 
    white-space: normal; 
  }
  .section_hero .hero-subtitle-text { 
    font-size: clamp(15px, 4.2vw, 19px); 
    line-height: 1.6; 
    max-width: 72ch; 
  }
}

/* Video üzerindeki katmanı daha “okunur” hale getir */
/* Tema yardımcıları */
.text-color-accent { color: #0d31bb !important; }
.bg-dark-navy { background-color: #051042 !important; }
.text-light { color: #efefef !important; }

/* Global safeguard: prevent accidental horizontal scroll/gap */
html, body { max-width: 100%; overflow-x: hidden; }

/* ------------------------------------------------------------ */
/* NEW HERO (clean) */
/* ------------------------------------------------------------ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* tam ekran, eski görsel yüksekliği korunur */
  isolation: isolate;
  overflow: hidden; /* video taşmaları sakince gizle */
  /* Hero metinlerini sola kaydırma miktarı (tüm kırılımlarda tutarlı) */
  --hero-shift-x: clamp(8px, 1.8vw, 20px);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 65% 40%, rgba(0,0,0,0.0) 40%, rgba(0,0,0,0.65) 100%),
    linear-gradient(to top, rgba(5,16,66,0.55) 0%, rgba(5,16,66,0.0) 55%);
  z-index: -1;
}

.hero__content {
  position: absolute;
  inset: 0;
  pointer-events: none; /* içerik sadece metin; buton eklenirse kaldırın */
}

/* Title: bottom-left pill */
.hero__title {
  position: absolute;
  left: clamp(20px, 6vw, 80px);
  bottom: clamp(88px, 16vh, 180px);
  margin: 0;
  text-align: left;
  max-width: min(86vw, 920px);
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5.6vw, 64px);
  line-height: 1.12;
  color: #fff;
  display: block; /* arka plan/pill kaldırıldı, iki satır blok halinde */
  transform: translateX(calc(-1 * var(--hero-shift-x)));
}

/* Başlık iki satıra ayrıldı */
.hero__title .hero__line1,
.hero__title .hero__line2 { display: block; }
.hero__title .hero__line1 {
  margin-bottom: clamp(4px, 0.6vw, 8px);
  font-weight: 500;
}
.hero__title .hero__line2 { font-weight: 700; }

/* Subtitle: lower-right */
.hero__subtitle {
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: clamp(32px, 9vh, 92px);
  margin: 0;
  text-align: left;
  max-width: min(36vw, 40ch); /* daha dar */
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1vw, 16px); /* daha küçük */
  line-height: 1.55;
  color: rgba(239,239,239,0.96);
  transform: translateX(calc(-1 * var(--hero-shift-x)));
}

/* Tablet */
@media (max-width: 991px) {
  /* Tablet: kaydırmayı biraz azalt */
  .hero { --hero-shift-x: clamp(7px, 2.4vw, 16px); }
  .hero__title { left: clamp(16px, 6vw, 44px); bottom: clamp(72px, 16vh, 120px); font-size: clamp(28px, 7vw, 44px); border-radius: 14px; }
  .hero__subtitle { right: clamp(14px, 6vw, 44px); bottom: clamp(26px, 10vh, 72px); max-width: min(48vw, 46ch); font-size: clamp(13px, 1.8vw, 16px); }
}

/* Mobile */
@media (max-width: 767px) {
  /* Mobile: daha küçük bir sola kaydırma */
  .hero {
    --hero-shift-x: clamp(6px, 3vw, 14px);
    min-height: 87vh;                /* tekrar uzun: tam ekran yükseklik */
  }
  .hero__content { inset: 0; }
  .hero__title {
    left: 16px;
    right: 16px;                      /* ortalamaya uygun */
    max-width: 28ch;                  /* merkezde daha geniş blok */
    top: clamp(116px, 26vh, 236px);    /* biraz daha aşağı al */
    bottom: auto;                      /* bottom'u iptal et */
    font-size: clamp(24px, 8.8vw, 36px); /* daha büyük başlık */
    padding: 8px 12px;
    text-align: center;              /* başlığı ortala */
    margin: 0 auto;                  /* bloğu ortala */
    transform: none;                 /* mobilde yatay kaydırmayı kaldır */
  }
  .hero__subtitle {
    left: 16px;
    right: 16px;                     /* ortalamaya uygun */
    top: clamp(284px, 46vh, 384px);    /* başlığın altına biraz daha boşluk bırak */
    bottom: auto;                      /* bottom'u iptal et */
    max-width: 56ch;                 /* ortalanmış daha geniş blok */
    font-size: clamp(12px, 3.4vw, 16px); /* alt yazıyı büyüt */
    text-align: center;              /* alt yazıyı ortala */
    margin: 0 auto;
    transform: none;                 /* yatay kaydırmayı kaldır */
    line-height: 1.48;
  }

  /* 'Bir' altındaki dönen rozet: mobilde küçült, taşmayı azalt */
  .badge-anchor-bir .spin-badge {
    width: 140px;
    height: 140px;
    transform: translate(-50%, 8px);
  }
}

/* Action section: use Poppins for texts only (safe, scoped) */
.section_action .action_content,
.section_action .action_content p,
.section_action .action_overline,
.section_action .action_content .text-size-xxxlarge,
.section_action .action_content .text-weight-medium {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

/* Center only the main heading; revert subheading, overline, CTA to left alignment on desktop */

/* Scoped badge under the word 'Bir' (fixed-size, exact design) */
.badge-anchor-bir {
  position: relative;
  display: inline-block;
  line-height: 1; /* keep anchor tight to the word */
}
.badge-anchor-bir .spin-badge {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px); /* small gap under the word */
  width: 200px;
  height: 200px;
  pointer-events: none;
}
.badge-anchor-bir .rotating-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: #ffffff;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 3.5px;
}
.badge-anchor-bir .spin-badge__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  color: #ffffff;
}
.badge-anchor-bir .spin-badge__icon svg { stroke-width: 1; }
.section_action .action_content {
  text-align: initial;
}
.section_action .action_content > * {
  margin-left: initial;
  margin-right: initial;
}