:root {

  --bg: #f4f5f8;

  --text: #1f2530;

  --muted: #5f6672;

  --card: #ffffff;

  --line: #d9dce3;

  --dark: #25272c;

  --accent: #3b3f47;

}



* {

  box-sizing: border-box;

}



html,

body {

  margin: 0;

  padding: 0;

  font-family: "Outfit", sans-serif;

  color: var(--text);

  background: var(--bg);

  cursor: none;

}



html {

  scroll-behavior: smooth;

}



img {

  max-width: 100%;

  display: block;

}



.container {

  width: min(1160px, 92%);

  margin: 0 auto;

}



.section {

  padding: 88px 0;

}



.eyebrow {

  font-size: 12px;

  letter-spacing: 0.12em;

  font-weight: 700;

  color: #545c67;

}



h1,

h2,

h3,

p {

  margin: 0;

}



h1,

h2,

h3,

h4 {

  font-family: "Plus Jakarta Sans", sans-serif;

  letter-spacing: -0.02em;

}



p {

  line-height: 1.7;

}



.cursor-ring {

  position: fixed;

  width: 24px;

  height: 24px;

  border: 2px solid rgba(48, 53, 65, 0.45);

  border-radius: 999px;

  transform: translate(-50%, -50%);

  pointer-events: none;

  z-index: 3000;

  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;

}



.cursor-ring.active {

  width: 58px;

  height: 58px;

  border-color: rgba(46, 54, 71, 0.25);

  background: rgba(28, 35, 53, 0.1);

  backdrop-filter: blur(2px);

}



.site-header {

  position: sticky;
	
  top: 50;

  z-index: 1000;

  background: rgba(245, 246, 249, 0.92);

  border-bottom: 1px solid rgba(215, 218, 224, 0.7);

  backdrop-filter: blur(8px);

}



.nav-wrap {

  display: flex;

  align-items: center;

  justify-content: space-between;

  min-height: 72px;

  gap: 14px;

}



.brand {

  font-family: "Teko", sans-serif;

  font-size: 42px;

  line-height: 1;

  letter-spacing: 0.03em;

  font-weight: 700;

}



.brand span {

  font-weight: 600;

  letter-spacing: 0.24em;

  font-size: 14px;

  margin-left: 8px;

}



.main-nav ul {

  list-style: none;

  display: flex;

  gap: 20px;

  margin: 0;

  padding: 0;

  align-items: center;

}



.main-nav a {

  text-decoration: none;

  color: var(--text);

  font-size: 14px;

  font-weight: 500;

  transition: color 0.25s ease;

}



.main-nav a:hover {

  color: #5f6777;

}



.mobile-menu-btn {

  display: none;

  width: 42px;

  height: 42px;

  border: 1px solid #d3d8e2;

  border-radius: 10px;

  background: #fff;

  color: #232a35;

  align-items: center;

  justify-content: center;

}



.mobile-menu-btn i {

  font-size: 24px;

}



.has-dropdown {

  position: relative;

}



.dropdown {

  position: absolute;

  left: 0;

  top: 28px;

  min-width: 220px;

  background: #ffffff;

  border: 1px solid #d9dce2;

  border-radius: 12px;

  padding: 10px 0;

  display: none !important;

  flex-direction: column;

  gap: 0;

  box-shadow: 0 12px 28px rgba(35, 40, 52, 0.1);

}



.dropdown li {

  width: 100%;

}



.dropdown a {

  display: block;

  padding: 10px 16px;

  width: 100%;

}



.has-dropdown:hover .dropdown {

  display: flex !important;

}



.hero {

  position: relative;

  min-height: 78vh;

  overflow: hidden;

}



.hero-strip {

  position: relative;

  width: 100%;

  min-height: 78vh;

  cursor: grab;

  user-select: none;

}



.hero-slide {

  position: absolute;

  inset: 0;

  width: 100%;

  min-height: 78vh;

  opacity: 0;

  transform: scale(0.96);

  transition: opacity 0.65s ease, transform 0.65s ease;

  pointer-events: none;

}



.hero-slide img {

  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  pointer-events: none;

}



.hero-slide.is-active {

  opacity: 1;

  transform: scale(1);

  pointer-events: auto;



  z-index: 2;

}



.hero-overlay {

  position: absolute;

  inset: 0;

  background: linear-gradient(90deg, rgba(244, 246, 249, 0.95) 2%, rgba(244, 246, 249, 0.65) 18%, rgba(244, 246, 249, 0.2) 55%);

  z-index: 1;

}



.hero-content {

  position: relative;

  z-index: 2;

  max-width: 660px;

  margin-left: 8%;

  margin-right: auto;

  padding-top: 120px;

}



.hero h1 {

  font-size: clamp(34px, 4.6vw, 66px);

  line-height: 1.05;

  margin-bottom: 16px;

  text-align: left;

}



.hero p {

  color: var(--muted);

  margin-bottom: 26px;

  font-size: 18px;

  text-align: left;

  max-width: 560px;

}



.hero-slide.is-active .hero-content h1,

.hero-slide.is-active .hero-content p,

.hero-slide.is-active .hero-content .btn {

  animation: textEnter 0.7s ease;

}



@keyframes textEnter {

  from {

    opacity: 0;

    transform: translateX(42px);

  }

  to {

    opacity: 1;

    transform: translateX(0);

  }

}



.btn {

  border: 0;

  border-radius: 12px;

  background: var(--dark);

  color: #fff;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  padding: 13px 24px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;

}



.btn:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 22px rgba(35, 37, 42, 0.2);

}



.hero-nav {

  position: absolute;

  right: 18px;

  z-index: 5;

  width: 46px;

  height: 46px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(2px);

  color: rgba(255, 255, 255, 0.55);

  display: grid;

  place-items: center;

  opacity: 0.36;

  transform: scale(0.82);

  transition: transform 0.28s ease, background 0.28s ease, opacity 0.28s ease, color 0.28s ease;

}



.hero-nav i {

  font-size: 21px;

}



.hero-prev {

  top: calc(50% - 40px);

}



.hero-next {

  top: calc(50% + 8px);

}



.hero.hero-arrow-active .hero-nav {

  opacity: 0.9;

  transform: scale(1.03);

  background: rgba(255, 255, 255, 0.15);

  color: rgba(255, 255, 255, 0.92);

}



.hero-dots {

  position: absolute;

  left: 50%;

  bottom: 22px;

  transform: translateX(-50%);

  z-index: 5;

  display: flex;

  gap: 7px;

}



.hero-dot {

  appearance: none;

  -webkit-appearance: none;

  border: 0;

  padding: 0;

  margin: 0;

  display: block;

  width: 7px;

  height: 7px;

  min-width: 7px;

  min-height: 7px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  opacity: 0.78;

  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;

}



.hero-dot.is-active {

  transform: scale(1.25);

  opacity: 1;

  background: rgba(255, 255, 255, 0.95);

}



.about-grid {

  display: grid;

  grid-template-columns: 1.1fr 1fr 0.8fr;

  gap: 30px;

  align-items: center;

}



.about-text h2,

.services h2,

.materials h2,

.references h2 {

  font-size: clamp(34px, 4vw, 50px);

  margin: 10px 0 16px;

}



.about-text p {

  color: var(--muted);

}



.about-text ul {

  margin: 0;

  padding-left: 18px;

  color: #3f4652;

  display: grid;

  gap: 7px;

}



.about-points-card {

  margin: 22px 0;

  border: 1px solid #d9dde4;

  border-radius: 16px;

  padding: 16px 18px;

  background: #ffffffcc;

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

}



.about-points-card:hover {

  transform: translateY(-4px);

  border-color: #9ca3af;

  box-shadow: 0 14px 28px rgba(35, 40, 52, 0.12);

}



.about-points-card li {

  transition: transform 0.2s ease, color 0.2s ease;

}



.about-points-card li:hover {

  transform: translateX(5px);

  color: #1f2530;

}



.about-visual {

  position: relative;

  border-radius: 24px;

  overflow: hidden;

}



.about-visual img {

  width: 100%;

  min-height: 400px;

  object-fit: cover;

  transition: transform 0.5s ease, filter 0.35s ease;

}



.about-visual:hover img {

  transform: scale(1.05);

  filter: brightness(1.06);

}



.exp-badge {

  position: absolute;

  left: 200px;
text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
  bottom: 20px;

background: linear-gradient(to top, 
        rgba(44, 48, 54, 1) 0%,    /* Alt kısım: Tam siyah/koyu gri */
        rgba(44, 48, 54, 0) 100%   /* Üst kısım: Tamamen şeffaf */
    );
  color: #fff;

  border-radius: 18px;

  padding: 14px 22px;

  line-height: 1;

  font-size: 56px;
 

  font-weight: 800;

  box-shadow: 0 12px 20px rgba(13, 14, 17, 0.2);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.exp-badge span {

  display: block;

  font-size: 14px;

  margin-top: 5px;

  font-weight: 600;
	margin-left: 22px;
}



.about-visual:hover .exp-badge {

  transform: translateY(-8px);

  box-shadow: 0 18px 26px rgba(13, 14, 17, 0.26);

}



.glass {

  background: rgba(255, 255, 255, 0.24);

  border: 1px solid rgba(255, 255, 255, 0.54);

  border-radius: 20px;

  padding: 24px;

  backdrop-filter: blur(9px);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 8px 28px rgba(36, 40, 52, 0.1);

}



.about-stats {

  display: grid;

  gap: 20px;

}



.stat-item strong {

  display: block;

  font-size: 21px;

  font-weight: 700;

  line-height: 1.35;

  margin-bottom: 8px;

}



.stat-item span {

  color: #5d6470;

  font-weight: 500;

  font-size: 14px;

  line-height: 1.5;

}



.stat-item {

  padding: 12px;

  border: 1px solid transparent;

  border-radius: 12px;

  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;

}



.stat-item + .stat-item {

  border-top: 1px solid rgba(127, 136, 149, 0.25);

}



.stat-item:hover {

  transform: translateX(4px);

  background: rgba(255, 255, 255, 0.48);

  border-color: rgba(120, 129, 142, 0.35);

}



.section-head {

  display: flex;

  flex-direction: column;

  gap: 10px;

  align-items: flex-start;

  margin-bottom: 34px;

}



.section-head p {

  color: #5f6672;

  max-width: 780px;

  text-align: left;

}



.service-cards {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

}



.service-card {

  background: var(--card);

  border-radius: 18px;

  border: 1px solid #dadde3;

  padding: 16px;

  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;

}



.service-card img {

  border-radius: 12px;

  height: 165px;

  width: 100%;

  object-fit: cover;

  margin-bottom: 15px;

}



.service-card h3 {

  margin-bottom: 7px;

}



.service-card p {

  color: #5f6672;

  font-size: 14px;

}



.service-card:hover {

  transform: translateY(-9px);

  box-shadow: 0 18px 30px rgba(45, 50, 60, 0.12);

  border-color: #8f95a0;

}



.materials-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  border-radius: 24px;

  overflow: hidden;

  background: #e8ebf1;

}



.materials-text {

  padding: 58px;

}



.materials-text p {

  color: #5f6672;

  margin-bottom: 20px;

}



.material-list {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

}



.material-item {

  border: 1px solid #cfd4dd;

  background: #fff;

  color: #272e3a;

  border-radius: 11px;

  padding: 14px 12px;

  text-align: left;

  font-weight: 600;

  transition: all 0.22s ease;

}



.material-item:hover,

.material-item.active {

  background: #252932;

  color: #fff;

  border-color: #252932;

}



.materials-visual img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  min-height: 460px;

  transition: transform 0.45s ease, filter 0.35s ease;

}



.materials-visual:hover img {

  transform: scale(1.04);

  filter: brightness(1.08);

}



.section-head.compact {

  grid-template-columns: 1fr;

  margin-bottom: 18px;

}



.logo-marquee {

  border: 1px solid #d7dbe2;

  border-radius: 16px;

  overflow: hidden;

  background: #ffffff;

  padding: 18px 0;

  user-select: none;

}



.logo-track {

  display: flex;

  gap: 36px;

  width: max-content;

  will-change: transform;

  cursor: grab;

}



.logo-track img {

  height: 56px;

  width: 140px;

  object-fit: contain;

  background: #fff;

  border: 1px solid #e2e5eb;

  border-radius: 10px;

  padding: 8px 14px;

  user-select: none;

  -webkit-user-drag: none;

  pointer-events: none;

}



.machine-grid {

  margin-top: 22px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;

}



.machine-card {

  border: 1px solid #d9dde5;

  border-radius: 16px;

  padding: 18px;

  background: #fff;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

}



.machine-card h3 {

  margin: 0 0 8px;

  font-size: 20px;

}



.machine-card p {

  margin: 0;

  color: #616977;

}



.machine-card:hover {

  transform: translateY(-5px);

  border-color: #97a0af;

  box-shadow: 0 14px 22px rgba(31, 37, 49, 0.1);

}



.career-form {

  margin-top: 18px;

  display: grid;

  grid-template-columns: repeat(1, 1fr);

  gap: 12px;

}



.career-form .email-row,

.career-form .phone-row,

.career-form textarea {
	
  grid-column: 1 / -1;

}



.career-form input,

.career-form textarea {

  border: 1px solid #cfd4de;

  border-radius: 12px;

  background: #fff;

  padding: 12px 13px;

  font: inherit;

}



.career-form textarea {

  resize: vertical;

  min-height: 120px;

}



.career-form .btn {

  width: fit-content;

}



.site-footer {

  padding: 45px 0 26px;

  border-top: 1px solid #d9dde4;

}



.footer-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

}



.site-footer h3 {

  margin-bottom: 8px;

}



.site-footer p {

  color: #5f6672;

}



.footer-contact {

  display: flex;

  gap: 24px;

  margin-top: 20px;

  border-top: 1px solid #d9dde4;

  padding-top: 16px;

}



.footer-bottom-widgets {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

  margin-top: 18px;

}



.footer-widget {

  border: 1px solid #d8dce4;

  border-radius: 14px;

  padding: 14px;

  background: #ffffff;

  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;

}



.footer-widget h4 {

  margin: 0 0 6px;

  font-size: 16px;

}



.footer-widget p {

  font-size: 14px;

}



.footer-widget:hover {

  transform: translateY(-4px);

  border-color: #a4acb9;

  box-shadow: 0 14px 22px rgba(40, 45, 55, 0.1);

}



.social-icons {

  display: flex;

  gap: 10px;

  margin-top: 8px;
}



.social-icon {

  width: 40px;
  height: 40px;

  border-radius: 999px;

  display: grid;

  place-items: center;

  border: 1px solid #ccd3df;

  color: #2d3441;

  text-decoration: none;

  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	

}



.social-icon i {

  font-size: 18px;

}



.social-icon:hover {

  transform: scale(1.12);

  background: #262b34;

  color: #fff;

  border-color: #262b34;

}



.copyright {

  text-align: center;

  margin-top: 28px;

  color: #5f6672;

  font-size: 13px;

}



@media (max-width: 1080px) {

  .main-nav ul {

    gap: 14px;

    flex-wrap: wrap;

  }

  .about-grid {

    grid-template-columns: 1fr;

  }

  .service-cards {

    grid-template-columns: repeat(2, 1fr);

  }

  .materials-grid,

  .section-head {

    grid-template-columns: 1fr;

  }

  .machine-grid {

    grid-template-columns: 1fr;

  }

  .career-form {

    grid-template-columns: 1fr;

  }

  .career-form textarea {

    grid-column: span 1;

  }

  .footer-bottom-widgets {

    grid-template-columns: 1fr;

  }

}



@media (max-width: 720px) {

  html,

  body {

    overflow-x: hidden;

  }

  .section {

    padding: 62px 0;

  }

  .brand {

    font-size: 34px;

  }

  .brand span {

    font-size: 12px;

    letter-spacing: 0.18em;

  }

  .mobile-menu-btn {

    display: inline-flex;

    min-width: 44px;

    min-height: 44px;

  }

  .main-nav {

    position: fixed;

    right: 10px;

    top: 70px;

    width: min(300px, calc(100vw - 20px));

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid #d7dde7;

    border-radius: 14px;

    box-shadow: 0 18px 40px rgba(23, 27, 35, 0.15);

    padding: 14px;

    opacity: 0;

    pointer-events: none;

    transform: translateY(-8px);

    transition: opacity 0.2s ease, transform 0.2s ease;

    display: block;

    z-index: 1100;

    max-height: calc(100vh - 84px);

    overflow-y: auto;

  }

  .main-nav.is-open {

    opacity: 1;

    pointer-events: auto;

    transform: translateY(0);

  }

  .main-nav ul {

    flex-direction: column;

    align-items: stretch;

    gap: 8px;

  }

  .main-nav a {

    display: block;

    padding: 12px 10px;

    border-radius: 8px;

    background: #f3f5f9;

    font-size: 14px;

    min-height: 44px;

  }

  .has-dropdown .dropdown {

    position: static;

    display: flex !important;

    box-shadow: none;

    border-radius: 8px;

    margin-top: 6px;

    border: 1px solid #e1e5ec;

    padding: 6px;

    min-width: 100%;

  }

  .dropdown a {

    font-size: 13px;

    padding: 8px 10px;

    background: transparent;

  }

  .hero,

  .hero-slide,

  .hero-strip {

    min-height: 66vh;

  }

  .hero-content {

    margin-left: 6%;

    margin-right: 6%;

    padding-top: 90px;

    max-width: 100%;

  }

  .hero h1 {

    font-size: clamp(30px, 9vw, 42px);

  }

  .hero p {

    font-size: 15px;

    max-width: 92%;

  }

  .hero-nav {

    right: 10px;

    width: 40px;

    height: 40px;

  }

  .hero-prev {

    top: calc(50% - 34px);

  }

  .hero-next {

    top: calc(50% + 8px);

  }

  .hero-dots {

    bottom: 14px;

  }

  .about-grid,

  .service-cards,

  .material-list,

  .footer-grid,

  .materials-grid {

    grid-template-columns: 1fr;

  }

  .about-visual img {

    min-height: 320px;

  }

  .exp-badge {

    font-size: 46px;

    padding: 12px 18px;

  }

  .exp-badge span {

    font-size: 14px;

  }

  .materials-text {

    padding: 26px 18px;

  }

  .materials-visual img {

    min-height: 280px;

  }

  .machine-grid {

    grid-template-columns: 1fr;

  }

  .career-form {

    grid-template-columns: 1 fr;

  }

  .career-form textarea {

    grid-column: span 1;

  }

  .footer-grid {

    gap: 18px;

  }

  .footer-contact {

    flex-direction: column;

    gap: 8px;

  }

  .footer-bottom-widgets {

    grid-template-columns: 1fr;

  }

  .cursor-ring {

    display: none;

  }

}



@media (max-width: 420px) {

  .container {

    width: min(1160px, 94%);

  }

  .brand {

    font-size: 30px;

  }

  .hero h1 {

    font-size: clamp(26px, 8.8vw, 36px);

    line-height: 1.1;

  }

  .btn {

    padding: 11px 18px;

    font-size: 14px;

  }

  .about-text h2,

  .services h2,

  .materials h2,

  .references h2 {

    font-size: clamp(29px, 8vw, 36px);

  }

  .stat-item strong {

    font-size: 18px;

  }

  .hero-nav {

    width: 36px;

    height: 36px;

  }

  .hero-nav i {

    font-size: 17px;

  }

}



@media (max-width: 430px) {

  .hero-content {

    margin-left: 5.5%;

    margin-right: 5.5%;

    padding-top: 84px;

  }

  .hero p {

    font-size: 14px;

  }

  .section {

    padding: 56px 0;

  }

}



@media (max-width: 390px) {

  .main-nav {

    right: 8px;

    width: calc(100vw - 16px);

  }

  .hero h1 {

    font-size: clamp(24px, 8.4vw, 32px);

  }

  .exp-badge {

    left: 14px;

    bottom: 14px;

    font-size: 40px;

  }

  .exp-badge span {

    font-size: 12px;

  }

}



@media (max-width: 375px) {

  .nav-wrap {

    min-height: 66px;

  }

  .brand {

    font-size: 27px;

  }

  .brand span {

    font-size: 11px;

  }

  .hero-nav {

    width: 34px;

    height: 34px;

    right: 8px;

  }

  .hero-dot {

    width: 6px;

    height: 6px;

    min-width: 6px;

    min-height: 6px;

  }

  .machine-card,

  .footer-widget {

    padding: 12px;

  }

}
/* OZCNC/styles.css dosyasının en altına ekleyin */

@media (max-width: 1150px) {
    /* Normal menü linklerini gizle */
    .main-nav {
        display: none !important;
    }

    /* Hamburger menü butonunu göster */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Header içindeki boşlukları orantılı tut */
    .nav-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

    /* Logoyu küçük pencerede daha derli toplu yap */
    .brand {
        font-size: 1.5rem;
    }
}
/* Sayfa içeriğinin menü altında kalmaması için */
body { padding-top: 85px; }

/* Hamburger Buton Animasyonu */
.custom-hamburger {
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 8px;
    background: transparent;
}

.custom-hamburger span {
    width: 100%;
    height: 3px;
    background-color: #212529; /* Kurumsal Siyah */
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Buton Tıklandığında X Dönüşümü */
.custom-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.custom-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Menü Arka Planını Bulanıklaştır (Premium Etki) */
.offcanvas-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Yan Menü Tasarımı */
.offcanvas {
    width: 300px !important;
    background: rgba(255, 255, 255, 0.98);
}

.offcanvas .nav-link:hover {
    color: #0d6efd !important;
    transform: translateX(10px);
    transition: 0.3s;
}
/* Menü sabit olduğu için sayfanın en üstünden boşluk bırakıyoruz */
body {
    padding-top: 85px !important;
}

/* Masaüstünde yan paneli ve butonun mobildeki elemanlarını gizle */
@media (min-width: 992px) {
    .navbar-toggler { display: none; }
    .offcanvas { display: none; }
}

/* Hamburger Buton Görünümü */
.custom-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #212529;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 5px;
}

/* Navigasyon Link Kalınlığı */
.nav-link {
    font-size: 15px;
    letter-spacing: 0.3px;
}
/* 1. Sayfa içeriği menünün altında kalmasın (Fixed-top için şart) */
body {
    padding-top: 80px !important;
}

/* 2. Logoyu dizginle (Resimdeki devasa logoyu düzeltir) */
.navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* 3. Hamburger Buton Tasarımı ve Animasyon Hazırlığı */
.custom-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #212529;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 5px;
}

/* 4. Masaüstünde Offcanvas'ı Kesin Olarak Gizle (Hatalı listeyi yok eder) */
@media (min-width: 992px) {
    .navbar-toggler { display: none !important; }
}

/* 5. Menü Arkası Bulanıklık (Premium Etki) */
.offcanvas-backdrop.show {
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.5);
}
/* --- PC GÖRÜNÜMÜ (ESKİ HALİ) --- */
@media (min-width: 992px) {
    .site-header {
        position: relative; /* PC'de yapışık olmasın, eski yerinde dursun */
        background: #fff;
        padding: 15px 0;
        z-index: 1000;
    }
    body { padding-top: 0 !important; } /* PC'de üst boşluğu kaldır */
    
    .main-nav ul li a {
        transition: 0.3s;
        font-size: 15px;
    }
    .main-nav ul li a:hover { color: #0d6efd; }
}

/* --- MOBİL GÖRÜNÜMÜ (YENİ HALİ) --- */
@media (max-width: 991px) {
    .site-header {
        position: fixed; /* Mobilde üste yapışık kalsın */
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1050;
        padding: 12px 0;
    }
    body { padding-top: 80px !important; } /* Mobilde içerik menü altında kalmasın */

    /* Animasyonlu Hamburger */
    .custom-hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #212529;
        margin: 5px 0;
        transition: 0.3s;
        border-radius: 5px;
    }
    
    /* Yan Menü Blur Efekti */
    .offcanvas-backdrop.show {
        backdrop-filter: blur(5px);
        background-color: rgba(0,0,0,0.4);
    }
}



/* Yandan Menü (Side Menu) */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px; /* Başlangıçta gizli (sağda) */
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.side-menu.active {
    right: 0; /* Açıldığında sağa yaslan */
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

.side-menu-overlay.active {
    display: block;
}

.side-link {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 10px 0;
    transition: 0.3s;
}

.side-link:hover { color: #0d6efd; }

/* Mobil Uyumluluk İçin Ekstra Dokunuşlar */
@media (max-width: 576px) {
    .brand-text { font-size: 14px; }
}


/* Masaüstünde (992px ve üzeri) Yan Menüyü ve Butonu Gizle */
@media (min-width: 992px) {
    #sideMenu, #overlay, #openSideMenu {
        display: none !important;
    }
}

/* Yan Menü (Side Menu) Temel Ayarları */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Başlangıçta tamamen ekran dışında */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999; /* En üstte durması için */
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.side-menu.active {
    right: 0; /* Açıldığında ekrana gir */
}

/* Karartma Katmanı */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

.side-menu-overlay.active {
    display: block;
}
/* styles.css dosyanın en üstüne veya en altına ekle */

* {
    box-sizing: border-box; /* Elemanların genişliğini korur */
}
@media (max-width: 768px) {
    /* Header yüksekliğini daralt */
    .site-header {
        padding: 5px 0 !important;
        height: 60px !important; /* Sabit bir yükseklik verelim */
        display: flex;
        align-items: center;
    }

    /* Logoyu küçült */
    .brand img {
        height: 30px !important; 
    }

    /* Yazıyı incelt ve küçült */
    .brand-text {
        font-size: 12px !important;
        letter-spacing: 0.5px;
    }

    /* Menü butonunu küçült */
    #openSideMenu {
        padding: 5px !important;
    }

    #openSideMenu i {
        font-size: 1.5rem !important;
    }
}
/* Hero veya Bize Ulaşın yazısı için */
@media (max-width: 768px) {
    .hero-text-area { /* Senin class ismin farklıysa ona göre düzenle */
        padding: 20px;
        background: rgba(255, 255, 255, 0.7); /* Hafif beyaz şeffaf fon */
        border-radius: 10px;
        backdrop-filter: blur(5px); /* Cam efekti */
    }

    h1 {
        font-size: 24px !important; /* Başlığı mobilde küçült */
    }

    p {
        font-size: 14px !important; /* Metni mobilde küçült */
    }
}
/* Masaüstü Menü Elemanlarını Hizalama */
.site-header .nav {
    display: flex;
    align-items: center; /* Tüm elemanları dikeyde tam merkeze alır */
    margin-bottom: 0;
}

.site-header .nav-link {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    height: 100%; /* Kendi alanında tam merkezlenmesi için */
    line-height: 1; /* Yazı yüksekliğini butonla dengeler */
}

/* İletişim Butonunun Hizalanması */
.site-header .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px; /* Butonun yüksekliğini buradan ayarlayabilirsin */
}
/* 














/* 2. Kural: Şüpheli konteynırları sıfırla */
main, .main-wrapper, #wrapper, .content, section {
    overflow: visible !important;
    height: auto !important;
    min-height: 0 !important;
}

/* 3. Kural: Custom Cursor (Halka) hatasını engelle */
#cursorRing, .cursor-ring {
    position: fixed !important;
    pointer-events: none !important;
    z-index: 99999 !important; /* Diğer her şeyin üstünde olsun */
    
    /* 1. Boyut Tanımlama */
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important; /* Tam daire yapar */
    
    /* 2. Merkezleme Büyüsü */
    left: 0 !important;
    top: 0 !important;
    margin-left: -15px !important; /* Genişliğin yarısı kadar sola çek */
    margin-top: -15px !important;  /* Yüksekliğin yarısı kadar yukarı çek */
    
    /* 3. Diğer Detaylar */
    border: 2px solid #1a1d23 !important; /* Halka rengi */
    transition: transform 0.1s ease-out !important; /* Takip akıcılığı */
}
