/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   GENEL
========================= */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #e5e7eb;
}


/* =========================
   NAVBAR
========================= */
.navbarr {
    background-color: #111;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;              /* logo – yazı arası */
  padding: 6px 10px;
}

.banneryazi {
    padding: 6px 14px;
    border: 1.5px solid rgba(56, 189, 248, 0.55);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.4px;
    transition: 0.25s ease;
}
.navbar-logo {
  width: 36px;            /* 🔥 30 küçük, 36 ideal */
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.6));
}
.navbar-brand:hover .navbar-logo {
  transform: scale(1.08) rotate(-3deg);
}

.navbar-brand:hover .banneryazi {
    background-color: rgba(56, 189, 248, 0.12);
    border-color: #38bdf8;
}

.navbar-nav .nav-link {
    color: #ddd !important;
    margin: 0 6px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #38bdf8 !important;
}

/* FORM GENEL */
form.d-flex {
  background: rgba(15, 25, 35, 0.9);
  border: 1px solid #00bfff;
  border-radius: 30px;
  padding: 4px;
  box-shadow: 0 0 12px rgba(0,191,255,0.4);
  transition: all 0.3s ease;
}

/* INPUT */
form.d-flex .form-control {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  box-shadow: none !important;
  width: 160px;
}

/* PLACEHOLDER */
form.d-flex .form-control::placeholder {
  color: #9fbfd4;
}

/* FOCUS */
form.d-flex .form-control:focus {
  outline: none;
  box-shadow: none;
}

/* BUTON */
form.d-flex .ara {
  background: linear-gradient(135deg, #00bfff, #0077ff);
  border: none;
  color: #fff;
  border-radius: 25px;
  padding: 6px 14px;
  transition: all 0.3s ease;
}

/* BUTON HOVER */
form.d-flex .ara:hover {
  background: linear-gradient(135deg, #00e5ff, #0099ff);
}

/* FORM HOVER */
form.d-flex:hover {
  box-shadow: 0 0 18px rgba(0,191,255,0.8);
}


/* =========================
   AYIRICI
========================= */
.cizgi {
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #2563eb);
}

/* =========================
   HERO
========================= */
.hero {
    height: 60vh;
    min-height: 360px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-content p {
    color: #d1d5db;
    font-size: 1.15rem;
    line-height: 1.6;
}

.hero-content .tech {
    display: block;
    margin-top: 8px;
    color: #38bdf8;
    font-weight: 700;
}

/* =========================
   SLIDER
========================= */
.sliderimg {
    width: 100%;
    height: 550px;
    object-fit: contain;
    background-color: #000;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.28);
    padding: 16px 36px;
    border-radius: 10px;
    max-width: 780px;
    min-width: 520px;
    margin: 0 auto 34px;
    backdrop-filter: blur(3px);
    text-align: center;
}

.carousel-caption h2 {
    font-size: 1.6rem;
    font-weight: 500;
    color: #f9fafb;
}

.carousel-caption p {
    font-size: 0.95rem;
    color: #e5e7eb;
    line-height: 1.65;
}

/* =========================
   KARTLAR
========================= */
.card {
    border: none;
    border-radius: 6px;
    background-color: #fff;
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.cizgi2 {
    height: 4px;
    background-color: #38bdf8;
}

.cardbody {
    text-align: center;
}

.card-title {
    font-weight: 700;
}

.card-text {
    font-size: .95rem;
    color: #555;
}

/* =========================
   MODAL
========================= */

.modal-title{
  color:#000
}

.modal-dialog {
    max-width: 560px;
}

.modal-content {
    border-radius: 10px;
}

.modal-body {
    padding: 16px 26px;
    font-size: 0.95rem;
    line-height: 1.7;
    color:#000000
}

.modal-footer .btn {
    min-width: 120px;
}

/* =========================
   FOOTER (FINAL – TEK KAYNAK)
========================= */
.site-footer {
    
    background: linear-gradient(180deg, #0b1220, #050914);
    color: #cbd5e1;
    border-top: 4px solid #38bdf8;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.footer-title {
    font-size: 14px;
    color: #94a3b8;
}

.footer-desc {
    font-size: 13px;
    color: #a7b3c6;
}

/* === SOSYAL İKONLAR – SADE & PRO === */
.footer-right {
    display: flex;
    gap: 18px;
}

.social-link {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-link::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #e5e7eb;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: all 0.25s ease;
}

.social-link img {
    width: 20px;
    height: 20px;
    opacity: 0.65;
    transition: 0.25s ease;
}

.social-link:hover {
    border-color: #38bdf8;
    transform: translateY(-3px);
    box-shadow: 0 0 12px rgba(56,189,248,0.35);
}

.social-link:hover img {
    opacity: 1;
    transform: scale(1.15);
}

.footer-bottom {
    border-top: 1px solid rgba(148,163,184,0.18);
    padding: 14px;
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
}
.icon-instagram::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'><path d='M7 2C4.243 2 2 4.243 2 7v10c0 2.757 2.243 5 5 5h10c2.757 0 5-2.243 5-5V7c0-2.757-2.243-5-5-5H7zm10 2a3 3 0 013 3v10a3 3 0 01-3 3H7a3 3 0 01-3-3V7a3 3 0 013-3h10zm-5 3a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm4.5-.5a1 1 0 100 2 1 1 0 000-2z'/></svg>");
}

.icon-linkedin::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'><path d='M4 3a2 2 0 100 4 2 2 0 000-4zm0 6h4v12H4V9zm6 0h4v2h.057c.556-1 1.92-2 3.943-2 4.214 0 5 2.785 5 6.4V21h-4v-5.6c0-1.337-.025-3.056-1.857-3.056-1.857 0-2.143 1.45-2.143 2.95V21h-4V9z'/></svg>");
}

.icon-github::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 24 24'><path d='M12 .5C5.73.5.5 5.74.5 12.02c0 5.1 3.292 9.42 7.87 10.95.576.106.79-.25.79-.556v-2.1c-3.2.696-3.87-1.544-3.87-1.544-.523-1.33-1.278-1.684-1.278-1.684-1.045-.714.08-.7.08-.7 1.155.082 1.763 1.187 1.763 1.187 1.027 1.76 2.695 1.25 3.35.957.104-.745.402-1.25.732-1.538-2.553-.29-5.237-1.277-5.237-5.685 0-1.256.448-2.283 1.184-3.086-.12-.29-.513-1.457.112-3.04 0 0 .965-.31 3.162 1.18a10.94 10.94 0 012.88-.388c.977.004 1.96.132 2.88.388 2.196-1.49 3.16-1.18 3.16-1.18.626 1.583.233 2.75.114 3.04.737.803 1.182 1.83 1.182 3.086 0 4.42-2.688 5.392-5.25 5.676.414.355.783 1.058.783 2.133v3.16c0 .31.21.67.8.555C20.71 21.44 24 17.12 24 12.02 24 5.74 18.77.5 12 .5z'/></svg>");
}

/* HOVER */
.social-link:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
}

.social-link:hover::before {
  background-color: #38bdf8;
  transform: scale(1.15);
}
/* =========================
   HAKKIMDA SAYFASI
========================= */

.about-page {
  background: #0b0f14;
  color: #e5e7eb;
  padding-bottom: 80px;
}

/* ÜST BAŞLIK */
.about-hero {
  text-align: center;
  padding: 80px 20px 50px;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #ffffff;
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #9ca3af;
  line-height: 1.7;
}

/* ORTA İÇERİK */
.about-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* METİN KUTUSU */
.about-text {
  background: #111827;
  padding: 42px;
  border-radius: 16px;
  margin-bottom: 42px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.about-text h2 {
  color: #38bdf8;
  margin-bottom: 18px;
  font-weight: 700;
}

.about-text p {
  line-height: 1.85;
  margin-bottom: 16px;
  color: #d1d5db;
}

/* SKILLS */
.about-skills {
  margin-bottom: 40px;
}

.about-skills h3 {
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tags span {
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(56,189,248,0.25);
}

/* HEDEF */
.about-goals {
  background: #0f172a;
  padding: 32px;
  border-radius: 14px;
  border-left: 4px solid #38bdf8;
}

.about-goals h3 {
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffffff;
}

.about-goals p {
  line-height: 1.75;
  color: #cbd5f5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-text {
    padding: 26px;
  }
}
.about-page {
  margin-bottom: 0 !important;
  padding-bottom: 120px; /* footer nefes alsın */
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .sliderimg {
        height: 300px;
    }
    .carousel-caption {
        min-width: auto;
        padding: 14px 20px;
    }
}
/* =========================
   ÇALIŞMALARIM
========================= */

.projects-page {
  background: #0b0f14;
  padding: 80px 0 120px;
  color: #e5e7eb;
}

.projects-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.projects-desc {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 50px;
}

/* PROJE KART */
.project-card {
  height: 100%;
  background: linear-gradient(180deg, #111827, #0f172a);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,0.6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.project-body {
  padding: 30px;
}

.project-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
}

.project-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

/* TAGLER */
.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.project-tags span {
  background: rgba(56,189,248,0.15);
  color: #38bdf8;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* BUTON */
.project-btn {
  display: inline-block;
  margin-top: 10px;
  color: #38bdf8;
  font-weight: 600;
  text-decoration: none;
}

.project-btn:hover {
  text-decoration: underline;
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}
.carousel-inner,
.carousel-item {
  pointer-events: auto;
}
.carousel-inner,
.carousel-item {
  pointer-events: auto;
}
/* =========================
   SKILLS / ÖĞRENDİKLERİM – FIX
========================= */

/* Section arka plan: koyu ama net */
#skills {
  background: linear-gradient(180deg, #0b1220, #020617);
  padding: 90px 40px;
}

/* Başlık: gömülme bitti */
#skills h2 {
  color: #f8fafc;
  font-weight: 800;
  letter-spacing: 0.6px;
}

/* Alt açıklama: text-muted’i kurtar */
#skills p.text-muted {
  color: #94a3b8 !important;
}

/* Kartlar: beyaz sırıtması bitti */
#skills .card {
  background: #0f172a; /* koyu kart */
  border: 1px solid rgba(56,189,248,0.18);
  border-radius: 16px;
  color: #e5e7eb;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Hover: premium his */
#skills .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(0,0,0,.55);
  border-color: rgba(56,189,248,.55);
}

/* Kart başlık & metin */
#skills .card-title {
  color: #38bdf8;
  font-weight: 700;
}

#skills .card-text {
  color: #cbd5f5;
  line-height: 1.65;
}

/* Buton: bootstrap mavisini gömdük */
#skills .btn-primary {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  border: none;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
}

#skills .btn-primary:hover {
  opacity: .95;
  transform: scale(1.05);
}
 /* =========================
   GALERİ
========================= */

.gallery-page {
  background: #0b0f14;
  padding: 80px 0 120px;
  color: #e5e7eb;
  overflow: hidden;
}

.gallery-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.gallery-desc {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 50px;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollGallery 40s linear infinite;
}

.gallery-wrapper:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  min-width: 320px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* ANİMASYON */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-item {
    min-width: 240px;
    height: 160px;
  }
}
/* =========================
   İLETİŞİM
========================= */

.contact-page {
  background: #0b0f14;
  padding: 90px 0 140px;
  color: #e5e7eb;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.contact-header p {
  color: #94a3b8;
  font-size: 1.05rem;
}

.contact-box {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(180deg, #111827, #0f172a);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.contact-box label {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.contact-box .form-control {
  background: #020617;
  border: 1px solid rgba(255,255,255,0.12);
  color: #e5e7eb;
  padding: 12px 14px;
  border-radius: 10px;
}

.contact-box .form-control::placeholder {
  color: #64748b;
}

.contact-box .form-control:focus {
  background: #020617;
  color: #fff;
  border-color: #38bdf8;
  box-shadow: none;
}

.contact-btn {
  margin-top: 20px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
  border: none;
  padding: 12px 36px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  transition: 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(56,189,248,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-box {
    padding: 26px;
  }

  .contact-header h1 {
    font-size: 2.1rem;
  }
}
/* =========================
   LINKLER SAYFASI
========================= */

.links-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f172a, #020617);
  padding: 90px 0 120px;
}

.links-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.links-desc {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 60px;
  font-size: 1rem;
}

.links-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: 0 20px;
}

.link-card {
  background: linear-gradient(180deg, #0b1220, #020617);
  border-radius: 40px;
  padding: 40px 24px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.link-card h3 {
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.link-card p {
  font-size: 0.9rem;
  color: #94a3b8;
}

.link-card:hover {
  transform: translateY(-10px);
  border-color: #38bdf8;
  box-shadow: 0 0 40px rgba(56,189,248,0.25);
}

.link-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-color: #38bdf8;

  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;

  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  opacity: 1;
}



/* ICON SVG */
.link-icon.github {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 .5C5.73.5.5 5.74.5 12.02c0 5.1 3.292 9.42 7.87 10.95.576.106.79-.25.79-.556v-2.1c-3.2.696-3.87-1.544-3.87-1.544-.523-1.33-1.278-1.684-1.278-1.684-1.045-.714.08-.7.08-.7 1.155.082 1.763 1.187 1.763 1.187 1.027 1.76 2.695 1.25 3.35.957.104-.745.402-1.25.732-1.538-2.553-.29-5.237-1.277-5.237-5.685 0-1.256.448-2.283 1.184-3.086-.12-.29-.513-1.457.112-3.04 0 0 .965-.31 3.162 1.18a10.94 10.94 0 012.88-.388c.977.004 1.96.132 2.88.388 2.196-1.49 3.16-1.18 3.16-1.18.626 1.583.233 2.75.114 3.04.737.803 1.182 1.83 1.182 3.086 0 4.42-2.688 5.392-5.25 5.676.414.355.783 1.058.783 2.133v3.16c0 .31.21.67.8.555C20.71 21.44 24 17.12 24 12.02 24 5.74 18.77.5 12 .5z'/></svg>");
}

.link-icon.linkedin {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3a2 2 0 100 4 2 2 0 000-4zm0 6h4v12H4V9zm6 0h4v2h.057c.556-1 1.92-2 3.943-2 4.214 0 5 2.785 5 6.4V21h-4v-5.6c0-1.337-.025-3.056-1.857-3.056-1.857 0-2.143 1.45-2.143 2.95V21h-4V9z'/></svg>");
}

.link-icon.instagram {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 2h10a5 5 0 015 5v10a5 5 0 01-5 5H7a5 5 0 01-5-5V7a5 5 0 015-5zm5 4a5 5 0 100 10 5 5 0 000-10zm6.5-1.5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z'/></svg>");
}

.link-icon.cv {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 2h9l5 5v15a2 2 0 01-2 2H6a2 2 0 01-2-2V4a2 2 0 012-2z'/></svg>");
}

.link-card:hover .link-icon {
  transform: scale(1.15);
  background-color: #5ddcff;
}



.link-card:hover i {
  transform: scale(1.15) rotate(-3deg);
  color: #60a5fa;
}
.link-card.instagram:hover i {
  color: #e1306c;
}
/* LINK ICON – TEMİZ FONT AWESOME */
.link-card i {
  font-size: 64px;        /* 🔥 büyük ve net */
  color: #38bdf8;
  margin-bottom: 18px;
  display: block;
  line-height: 1;
  background: none !important;
  border: none !important;
}
/* ==== ICON FORCE SIZE ==== */
.link-card i {
  font-size: 40px !important;   /* 💣 büyük */
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  display: block;
  margin-bottom: 22px;
}
.navbar-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.5));
}
/* =========================
   CV KARTI – HAKKIMDA
========================= */
/* CV PANEL – SAYFAYA UYUMLU */
.cv-panel {
  max-width: 900px;
  margin: 80px auto 0;
  padding: 34px 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: linear-gradient(135deg, #0f172a, #020617);
  border-radius: 18px;

  border: 1px solid rgba(56,189,248,0.25);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

/* SOL METİN */
.cv-panel-left h3 {
  color: #e5e7eb;
  font-weight: 700;
  margin-bottom: 6px;
}

.cv-panel-left p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BUTON */
.cv-panel-btn {
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;

  background: linear-gradient(90deg, #38bdf8, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cv-panel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56,189,248,0.45);
}

