/* =========================
   RESET & GENEL
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

body{
  background:#f8fafc;
  color:#1f2937;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* =========================
   CONTAINER
========================= */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.section{
  padding:80px 0;
}

.light{
  background:#ffffff;
}

/* =========================
   HEADER & NAV
========================= */
header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

nav{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:20px;
  padding:20px;
}

nav a{
  position:relative;
  padding:8px 18px;
  border-radius:20px;
  font-weight:500;
  transition:.3s;
}

nav a:hover{
  background:#fff7ed;
  color:#f97316;
}

.btn-nav{
  background:#f97316;
  color:#fff !important;
}

/* underline hover */
nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#f97316;
  transition:.3s;
}

nav a:hover::after{
  width:100%;
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-block;
  padding:14px 30px;
  border-radius:30px;
  font-weight:600;
  transition:.3s;
}

.btn.primary{
  background:#f97316;
  color:#fff;
}

.btn.primary:hover{
  background:#ea580c;
}

.btn.outline{
  border:2px solid #f97316;
  color:#f97316;
}

.btn.outline:hover{
  background:#f97316;
  color:#fff;
}

.btn.large{
  padding:18px 40px;
  font-size:18px;
}

/* =========================
   HERO
========================= */
.hero-modern{
  background:linear-gradient(135deg,#fff7ed,#ffedd5);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-badge{
  display:inline-block;
  background:#fed7aa;
  color:#c2410c;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:15px;
  font-size:14px;
}

.hero-text h1{
  font-size:30px;
  margin-bottom:20px;
}

.hero-text h1 span{
  color:#f97316;
}

.hero-text p{
  font-size:20px;
  color:#555;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  gap:15px;
}

/* =========================
   SLIDER
========================= */
.slider{
  overflow:hidden;
  border-radius:25px;
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.slides{
  display:flex;
  animation:slide 12s infinite;
}

.slides img{
  width:100%;
  flex-shrink:0;
}

@keyframes slide{
  0%{transform:translateX(0)}
  33%{transform:translateX(-100%)}
  66%{transform:translateX(-200%)}
}
/* =========================
   BUTON HOVER
========================= */
.hero-actions .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-actions .btn:hover {
    transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr; /* tek sütun */
        gap: 40px;
        text-align: center;
    }
    .hero-text h1 { font-size: 36px; }
    .hero-text p { font-size: 16px; }
}

@media (max-width: 600px) {
    .hero-modern { min-height: 100vh; padding: 30px 15px; }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 14px; }
    .hero-actions { flex-direction: column; gap: 10px; }
}

/* =========================
   SERVICES
========================= */
.section-head{
  text-align:center;
  margin-bottom:50px;
}

.section-head h2{
  font-size:36px;
  margin-bottom:10px;
}

.section-head p{
  color:#555;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  border-radius:25px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-10px);
}

.service-card span{
  font-size:40px;
  margin-bottom:15px;
  display:block;
}

/* =========================
   WHY US
========================= */
.why-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.why-box ul{
  list-style:none;
}

.why-box li{
  margin-bottom:12px;
  font-size:17px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  text-align:center;
}

.stats div{
  background:#fff;
  padding:25px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.stats strong{
  display:block;
  font-size:28px;
  color:#f97316;
}

/* =========================
   CTA
========================= */
.cta{
  background:linear-gradient(135deg,#f97316,#fb923c);
  color:#fff;
  text-align:center;
  padding:90px 20px;
}

.cta p{
  margin:15px 0 30px;
  font-size:18px;
}

/* =========================
   TEAM
========================= */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.team-card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.team-img{
  width:140px;
  height:140px;
  border-radius:50%;
  overflow:hidden;
  margin:0 auto 20px;
}

/* =========================
   WHATSAPP
========================= */
.whatsapp-float{
  position:fixed;
  left:20px;
  bottom:20px;
  background:#25d366;
  color:#fff;
  padding:14px 18px;
  border-radius:50px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  z-index:999;
}

.whatsapp-float img{
  width:24px;
}

/* =========================
   FOOTER
========================= */
footer{
  background:#111827;
  color:#fff;
  text-align:center;
  padding:30px;
  margin-top:50px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){
  .hero-grid,
  .why-grid{
    grid-template-columns:1fr;
  }

  nav{
    justify-content:center;
    flex-wrap:wrap;
  }
}

/* TEAM */
.team-section{
  background:#f8fafc;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:50px;
}

.team-card{
  background:#fff;
  border-radius:20px;
  text-align:center;
  padding:30px 25px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.3s;
}

.team-card:hover{
  transform:translateY(-10px);
}

.team-img{
  width:140px;
  height:140px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
  border:5px solid #e5e7eb;
}

.team-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.team-card h3{
  font-size:20px;
  margin-bottom:5px;
}

.team-card span{
  display:block;
  font-size:14px;
  color:#2b6cb0;
  font-weight:600;
  margin-bottom:10px;
}

.team-card p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:768px){
  .team-img{
    width:120px;
    height:120px;
  }
}
.table-wrap{
  overflow-x:auto;
  margin-top:40px;
}

.modern-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.modern-table thead{
  background:linear-gradient(90deg,#f97316,#fb923c);
  color:#fff;
}

.modern-table th,
.modern-table td{
  padding:16px 18px;
  text-align:left;
  font-size:15px;
}

.modern-table tbody tr{
  border-bottom:1px solid #eee;
  transition:.3s;
}

.modern-table tbody tr:hover{
  background:#fff7ed;
}

.table-avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 5px 15px rgba(0,0,0,.15);
}
/* JOB APPLICATION */
.form-card{
  background:#fff;
  border-radius:22px;
  padding:40px;
  max-width:850px;
  margin:0 auto;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.form-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 16px;
}

.form-table td{
  vertical-align:top;
}

.form-table label{
  font-weight:600;
  color:#374151;
  display:block;
  padding-top:10px;
}

.form-table input,
.form-table textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  font-size:15px;
  transition:.3s;
}

.form-table input:focus,
.form-table textarea:focus{
  border-color:#f97316;
  box-shadow:0 0 0 3px rgba(249,115,22,.15);
  outline:none;
}

.form-actions{
  text-align:center;
  margin-top:30px;
}

/* ALERT */
.alert.success{
  background:#ecfdf5;
  color:#065f46;
  border-left:5px solid #10b981;
  padding:16px 20px;
  border-radius:12px;
  max-width:500px;
  margin:20px auto;
}
/* ABOUT */
.about-card{
  background:#fff;
  border-radius:24px;
  padding:40px;
  max-width:1000px;
  margin:50px auto 0;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.about-table{
  width:100%;
  border-collapse:collapse;
}

.about-table th{
  width:260px;
  text-align:left;
  padding:20px;
  font-size:16px;
  color:#f97316;
  vertical-align:top;
}

.about-table td{
  padding:20px;
  font-size:15px;
  line-height:1.8;
  color:#444;
}

.about-table tr:not(:last-child){
  border-bottom:1px solid #eee;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-table th{
    width:100%;
    display:block;
    padding-bottom:0;
  }

  .about-table td{
    display:block;
    padding-top:8px;
  }
}
/* HERO */
.about-hero{
  background:linear-gradient(120deg,#fff7ed,#ffedd5);
  padding:90px 0;
  text-align:center;
}

.about-hero h1{
  font-size:48px;
  margin-bottom:15px;
}

.about-hero p{
  font-size:18px;
  max-width:700px;
  margin:0 auto;
  color:#555;
}

/* MAIN */
.about-modern{
  padding:90px 0;
}

/* INTRO */
.about-intro{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:center;
}

.about-highlight{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.about-highlight div{
  background:#fff;
  padding:25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-highlight strong{
  font-size:28px;
  color:#f97316;
}

.about-highlight span{
  display:block;
  font-size:14px;
  color:#555;
}

/* CARDS */
.about-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin:80px 0;
}

.about-card{
  background:#fff;
  padding:35px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
  transition:.35s;
}

.about-card:hover{
  transform:translateY(-10px);
}

.about-card span{
  font-size:36px;
}

.about-card h3{
  margin:15px 0;
}

/* TIMELINE */
.about-timeline{
  border-left:4px solid #f97316;
  padding-left:40px;
}

.timeline-item{
  position:relative;
  margin-bottom:40px;
}

.timeline-item span{
  position:absolute;
  left:-54px;
  top:6px;
  width:18px;
  height:18px;
  background:#f97316;
  border-radius:50%;
}

.timeline-item h4{
  margin-bottom:6px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .about-intro{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:36px;
  }
}
/* HERO */
.randevu-hero{
  background:linear-gradient(120deg,#fff7ed,#ffedd5);
  padding:100px 0;
  text-align:center;
}

.randevu-hero h1{
  font-size:46px;
  margin-bottom:15px;
}

.randevu-hero p{
  max-width:700px;
  margin:0 auto;
  font-size:18px;
  color:#555;
}

/* SECTION */
.randevu-section{
  padding:90px 0;
}

/* ALERT */
.alert-modern{
  background:#ecfdf5;
  border-left:5px solid #10b981;
  padding:20px 25px;
  border-radius:16px;
  margin-bottom:40px;
}

.alert-modern strong{
  display:block;
}

/* WRAPPER */
.randevu-wrapper{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* INFO */
.randevu-info h2{
  font-size:32px;
  margin-bottom:15px;
}

.randevu-info p{
  margin-bottom:25px;
  color:#555;
}

.randevu-info ul{
  list-style:none;
}

.randevu-info li{
  margin-bottom:12px;
  font-size:16px;
}

/* FORM CARD */
.randevu-form-card{
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  border-radius:28px;
  padding:45px;
  box-shadow:0 30px 70px rgba(0,0,0,.15);
}

/* FORM */
.randevu-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.input-group{
  display:flex;
  flex-direction:column;
}

.input-group.full{
  grid-column:1 / -1;
}

.input-group label{
  font-size:14px;
  margin-bottom:6px;
  color:#555;
}

.input-group input{
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  font-size:15px;
  transition:.3s;
}

.input-group input:focus{
  outline:none;
  border-color:#f97316;
  box-shadow:0 0 0 3px rgba(249,115,22,.15);
}

/* BUTTON */
.btn-modern{
  grid-column:1 / -1;
  margin-top:15px;
  padding:16px;
  border:none;
  border-radius:16px;
  background:linear-gradient(120deg,#f97316,#fb923c);
  color:#fff;
  font-size:17px;
  cursor:pointer;
  transition:.3s;
}

.btn-modern:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 40px rgba(249,115,22,.4);
}

/* RESPONSIVE */
@media(max-width:900px){
  .randevu-wrapper{
    grid-template-columns:1fr;
  }

  .randevu-hero h1{
    font-size:36px;
  }
}
/* HERO */
.contact-hero{
  background:linear-gradient(120deg,#fef3c7,#ffedd5);
  padding:90px 0;
  text-align:center;
}

.contact-hero h1{
  font-size:44px;
  margin-bottom:15px;
}

.contact-hero p{
  max-width:700px;
  margin:0 auto;
  font-size:18px;
  color:#555;
}

/* SECTION */
.contact-section{
  padding:90px 0;
}

/* GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:100px;
  align-items:stretch;
}

/* INFO */
.contact-info{
  background:#fff;
  border-radius:28px;
  padding:45px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.contact-info h2{
  font-size:30px;
  margin-bottom:15px;
}

.contact-info p{
  color:#555;
  margin-bottom:30px;
}

/* INFO BOX */
.info-box{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:20px;
}

.info-box span{
  font-size:24px;
}

.info-box strong{
  display:block;
  font-size:15px;
}

.info-box p{
  margin:0;
  font-size:15px;
}

/* WHATSAPP BUTTON */
.btn-whatsapp{
  display:inline-block;
  margin-top:25px;
  padding:14px 22px;
  border-radius:16px;
  background:linear-gradient(120deg,#22c55e,#16a34a);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
}

.btn-whatsapp:hover{
  transform:translateY(-2px);
  box-shadow:0 15px 40px rgba(34,197,94,.4);
}

/* MAP */
.contact-map{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.contact-map iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-hero h1{
    font-size:36px;
  }
}
.page-title{
  font-size:34px;
  margin-bottom:10px;
}

.page-desc{
  color:#555;
  margin-bottom:40px;
}

/* FILTER */
.filter-card{
  background:#f8fafc;
}

.filter-grid{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:15px;
}

/* TIMELINE */
.timeline{
  margin-top:30px;
  position:relative;
  padding-left:30px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:10px;
  top:0;
  bottom:0;
  width:3px;
  background:#e5e7eb;
}

.timeline-item{
  position:relative;
  margin-bottom:30px;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left:-22px;
  top:5px;
  width:14px;
  height:14px;
  background:#f97316;
  border-radius:50%;
}

.timeline-date{
  font-size:13px;
  color:#777;
  margin-bottom:5px;
}

.timeline-content{
  background:#fff;
  padding:18px 22px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.timeline-content h4{
  margin-bottom:8px;
  font-size:18px;
}

.timeline-content p{
  font-size:15px;
  line-height:1.6;
  color:#555;
}

/* EMPTY */
.empty{
  color:#888;
  font-style:italic;
}

/* RESPONSIVE */
@media(max-width:768px){
  .filter-grid{
    grid-template-columns:1fr;
  }

  .timeline{
    padding-left:20px;
  }
}
.form-table {
  width: 100%;
  border-collapse: collapse;
}

.form-table th {
  text-align: left;
  width: 200px;
  font-weight: 600;
  padding: 12px;
  vertical-align: top;
}

.form-table td {
  padding: 12px;
}

.form-table input,
.form-table textarea {
  width: 100%;
}
/* DASHBOARD */
.dashboard{
  max-width:1200px;
  margin:50px auto;
  padding:0 20px;
}

/* HEADER */
.dashboard-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.dashboard-header h1{
  font-size:32px;
}

.dashboard-header p{
  color:#64748b;
  margin-top:5px;
}

/* CARD */
.dashboard-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.08);
  padding:25px;
}

/* CARD HEADER */
.card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.card-header h3{
  font-size:20px;
}

.badge{
  background:#e0f2fe;
  color:#0369a1;
  padding:6px 14px;
  border-radius:30px;
  font-size:13px;
  font-weight:600;
}

/* TABLE */
.modern-table{
  width:100%;
  border-collapse:collapse;
}

.modern-table th{
  text-align:left;
  font-size:14px;
  color:#64748b;
  padding:14px;
}

.modern-table td{
  padding:16px 14px;
  border-top:1px solid #f1f5f9;
}

.modern-table tr:hover{
  background:#f8fafc;
}

/* STUDENT INFO */
.student-info{
  display:flex;
  align-items:center;
  gap:15px;
}

.avatar{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#2563eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:18px;
}

.sub-text{
  font-size:13px;
  color:#64748b;
}

/* STATUS */
.status{
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.status.active{
  background:#dcfce7;
  color:#166534;
}
/* DASHBOARD GENEL */
.dashboard{
  max-width:1100px;
  margin:50px auto;
  padding:0 20px;
}

/* HEADER */
.dashboard-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.dashboard-header h1{
  font-size:30px;
}

.dashboard-header p{
  color:#64748b;
  margin-top:6px;
}

/* CARD */
.dashboard-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  padding:25px;
  margin-bottom:25px;
}

.dashboard-card.soft{
  background:#f8fafc;
}

.card-title{
  font-size:20px;
  margin-bottom:20px;
}

/* FORM TABLE */
.modern-form-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 15px;
}

.modern-form-table th{
  text-align:left;
  width:220px;
  font-size:14px;
  color:#475569;
}

.modern-form-table input,
.modern-form-table textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  font-size:15px;
}

.modern-form-table input:focus,
.modern-form-table textarea:focus{
  outline:none;
  border-color:#2563eb;
}

.form-action{
  text-align:right;
}

/* FILTER */
.filter-grid{
  display:grid;
  grid-template-columns:2fr 1fr auto;
  gap:15px;
}

/* TIMELINE */
.modern-timeline{
  position:relative;
  padding-left:30px;
}

.modern-timeline::before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  bottom:0;
  width:2px;
  background:#e5e7eb;
}

.timeline-item{
  position:relative;
  margin-bottom:25px;
}

.timeline-dot{
  width:14px;
  height:14px;
  background:#2563eb;
  border-radius:50%;
  position:absolute;
  left:-1px;
  top:6px;
}

.timeline-content{
  background:#f8fafc;
  border-radius:14px;
  padding:15px 20px;
}

.timeline-date{
  font-size:13px;
  color:#64748b;
  font-weight:600;
}

.timeline-content h4{
  margin:6px 0;
  font-size:17px;
}

.timeline-content p{
  font-size:15px;
  color:#475569;
  line-height:1.6;
}
/* =======================
   VELI DASHBOARD
======================= */
.veli-dashboard{
  max-width:1100px;
  margin:50px auto;
  padding:0 20px;
}

/* HEADER */
.veli-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.veli-header h1{
  font-size:32px;
}

.veli-header p{
  color:#64748b;
  margin-top:6px;
}

/* STUDENT CARD */
.veli-student-card{
  background:#fff;
  border-radius:22px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
  margin-bottom:35px;
}

/* STUDENT HEADER */
.student-header{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
}

.student-avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  background:linear-gradient(135deg,#f97316,#fb923c);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:700;
  color:#fff;
}

.student-header h2{
  font-size:22px;
}

.student-header span{
  font-size:14px;
  color:#64748b;
}

/* TIMELINE */
.veli-timeline{
  position:relative;
  padding-left:30px;
}

.veli-timeline::before{
  content:"";
  position:absolute;
  left:6px;
  top:0;
  bottom:0;
  width:3px;
  background:#e5e7eb;
}

.veli-timeline-item{
  position:relative;
  margin-bottom:25px;
}

.veli-dot{
  width:14px;
  height:14px;
  background:#f97316;
  border-radius:50%;
  position:absolute;
  left:-1px;
  top:10px;
}

/* CONTENT */
.veli-content{
  background:#f8fafc;
  padding:18px 22px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.veli-date{
  font-size:13px;
  font-weight:600;
  color:#64748b;
  margin-bottom:6px;
}

.veli-content h4{
  font-size:18px;
  margin-bottom:8px;
}

.veli-content p{
  font-size:15px;
  line-height:1.7;
  color:#475569;
}

/* EMPTY */
.empty{
  font-style:italic;
  color:#888;
  margin-top:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .veli-header{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }
}
/* =========================
   VELI ULTRA MODERN
========================= */

.veli-app{
  max-width:1200px;
  margin:60px auto;
  padding:0 20px;
}

/* TOPBAR */
.veli-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:50px;
}

.veli-topbar h1{
  font-size:36px;
  font-weight:700;
}

.veli-topbar p{
  color:#64748b;
  margin-top:6px;
}

/* STUDENT SECTION */
.veli-student{
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(18px);
  border-radius:30px;
  padding:40px;
  margin-bottom:45px;
  box-shadow:0 30px 80px rgba(0,0,0,.12);
}

/* HEADER */
.veli-student-head{
  display:flex;
  align-items:center;
  gap:25px;
  margin-bottom:35px;
}

.veli-avatar{
  width:78px;
  height:78px;
  border-radius:50%;
  background:linear-gradient(135deg,#f97316,#fb923c);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  font-weight:800;
  color:#fff;
}

.veli-student-info h2{
  font-size:26px;
}

.veli-student-info span{
  font-size:15px;
  color:#64748b;
}

/* RECORDS */
.veli-records{
  display:grid;
  gap:20px;
}

/* RECORD CARD */
.veli-record{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:25px;
  background:#f8fafc;
  padding:25px;
  border-radius:22px;
  transition:.35s;
}

.veli-record:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

/* DATE */
.veli-record-date{
  background:linear-gradient(135deg,#f97316,#fb923c);
  color:#fff;
  font-weight:700;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}

/* CONTENT */
.veli-record-body h3{
  font-size:20px;
  margin-bottom:8px;
}

.veli-record-body p{
  font-size:15px;
  color:#475569;
  line-height:1.7;
}

/* EMPTY */
.veli-empty{
  padding:25px;
  background:#fff7ed;
  border-radius:18px;
  color:#92400e;
  font-style:italic;
}

/* BUTTON */
.btn.ghost{
  padding:12px 22px;
  border-radius:16px;
  border:1px solid #e5e7eb;
  background:#fff;
  transition:.3s;
}

.btn.ghost:hover{
  background:#f97316;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
  .veli-record{
    grid-template-columns:1fr;
  }

  .veli-record-date{
    justify-content:flex-start;
    padding:12px 18px;
  }
}
/* =========================
   MOBILE FIRST - VELI PANEL
========================= */

/* GENEL */
@media(max-width:768px){

  body{
    font-size:15px;
  }

  .veli-app{
    margin:30px auto;
    padding:0 14px;
  }

  /* TOPBAR */
  .veli-topbar{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .veli-topbar h1{
    font-size:26px;
  }

  .veli-topbar p{
    font-size:14px;
  }

  .btn.ghost{
    width:100%;
    text-align:center;
  }

  /* STUDENT CARD */
  .veli-student{
    padding:25px 20px;
    border-radius:22px;
  }

  .veli-student-head{
    gap:15px;
    margin-bottom:25px;
  }

  .veli-avatar{
    width:60px;
    height:60px;
    font-size:24px;
  }

  .veli-student-info h2{
    font-size:20px;
  }

  .veli-student-info span{
    font-size:13px;
  }

  /* RECORDS */
  .veli-record{
    grid-template-columns:1fr;
    gap:15px;
    padding:20px;
  }

  .veli-record-date{
    width:fit-content;
    padding:8px 14px;
    font-size:13px;
    border-radius:12px;
  }

  .veli-record-body h3{
    font-size:17px;
  }

  .veli-record-body p{
    font-size:14px;
    line-height:1.6;
  }

  /* EMPTY */
  .veli-empty{
    font-size:14px;
    padding:18px;
  }
}

/* EXTRA SMALL DEVICES */
@media(max-width:420px){

  .veli-topbar h1{
    font-size:22px;
  }

  .veli-record-body h3{
    font-size:16px;
  }

  .veli-record-body p{
    font-size:13.5px;
  }
}
.keywords {
  margin-top: 40px;
  padding: 10px 0;
  text-align: left;
  font-size: 10px;
}

.keywords span {
  display: inline-block;
  background-color: #f0f0f0;  /* soluk gri arka plan */
  color: #888;               /* soluk yazı rengi */
  border-radius: 12px;
  padding: 5px 12px;
  margin: 5px 5px 0 0;
  font-weight: 500;
  transition: all 0.3s ease; /* hover geçiş efekti */
  cursor: default;           /* fare değişimi */
}

/* Hover efekti */
.keywords span:hover {
  background-color: #f97316; /* turuncu açılır */
  color: #fff;               /* yazı beyaz olur */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transform: translateY(-2px); /* hafif yukarı kalkma efekti */
}
