    :root {
      --blue: #0047AB;
      --blue-dark: #00307a;
      --orange: #FF8C00;
      --green: #00c97a;
      --green-dark: #00a060;
      --red: #e53935;
      --gold: #cca26d;
      --dark: #0d1117;
      --dark2: #161b22;
      --dark3: #1c2433;
      --border: rgba(255,255,255,0.08);
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    body { font-family:'Poppins',sans-serif; background:#ffffff; }

   /* ============ NAVBAR ============ */
    .navbar {
      background:#fff;
      border-bottom:2px solid #e8ecf0;
      padding:0 1.5rem;
      position:sticky; top:0; z-index:1000;
      box-shadow:0 2px 16px rgba(0,0,0,0.08);
      min-height:86px;
    }
    .navbar .container-xl { position:relative; }

    /* Masaüstü menü linkleri - hover rengi */
    .navbar .nav-link {
      font-weight:700; font-size:.86rem;
      display:flex; align-items:center; gap:4px; transition:color .2s;
      color:#141414; /* varsayılan renk */
    }
    .navbar .nav-link:hover {
      color: var(--blue) !important;
    }
    .navbar .nav-link::after { display:none !important; }
    .navbar .nav-link .caret {
      font-size:14px; transition:transform .25s; margin-left:2px; color:#141414;
    }
    /* Hover ile dropdown açıldığında caret dönüşü */
    .navbar .nav-item.dropdown:hover .nav-link .caret {
      transform:rotate(180deg);
    }

    /* ============ MASAÜSTÜ HOVER DROPDOWN (tıklama değil, üzerine gelince açılır) ============ */
    @media (min-width: 992px) {
      /* Dropdown menüyü gizle, sadece hover ile göster */
      .navbar .dropdown-menu {
        display: none;
        margin-top: 0 !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s;
        transform: translateY(8px);
        pointer-events: none; /* menü açılmadan önce tıklamayı engelle */
      }
      /* Dropdown item hover durumunda göster */
      .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }
      /* Bootstrap JS'in tıklama ile açılmasını engellemek için butonları pasifleştir */
      .navbar .nav-item.dropdown .nav-link {
        pointer-events: auto; /* linkin tıklanabilir kalması için, ama dropdown'u hover açıyor */
      }
      /* Açılan menü içindeki öğeler */
      .navbar .dropdown-menu {
        animation: fadeDown 0.2s ease;
      }
      @keyframes fadeDown {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
      }
    }

    /* Mobilde ise normal tıklama ile açılma (bootstrap varsayılanı) */
    @media (max-width: 991px) {
      .navbar .dropdown-menu {
        display: none;
      }
      .navbar .dropdown.show .dropdown-menu {
        display: block;
      }
      /* Mobilde hover efekti sadece renk değişimi olsun, menü açılmasın */
      .navbar .nav-link:hover {
        color: var(--blue) !important;
      }
    }

    .navbar .dropdown-item {
      border-radius:9px; font-size:.82rem; font-weight:600;
      padding:.55rem 1rem; color:#444;
      display:flex; align-items:center; gap:.6rem; transition:all .15s;
    }
    .navbar .dropdown-item i { color:var(--blue); font-size:.95rem; }
    .navbar .dropdown-item:hover { background:var(--blue); color:#fff; }
    .navbar .dropdown-item:hover i { color:#fff; }
    .navbar .dropdown-divider { margin:.3rem .5rem; border-color:#f0f0f0; }

    .btn-arayalim {
      background:var(--blue); color:#fff !important;
      border-radius:25px; padding:0.15rem 1.0rem !important;
      font-size:.84rem !important; font-weight:800 !important;
      font-family:'Nunito',sans-serif;
      display:flex; align-items:center; gap:6px;
      transition:all .2s; border:none;
    }
    .btn-arayalim:hover { background:#cca26d; color:#fff; transform:scale(1.04); }
    .btn-arayalim i { font-size:22px; }

    /* Mobil hamburger butonu */
    .mob-hamburger {
      display:none;
      background:transparent; border:none;
      font-size:2.7rem; color:#1f284c;
      cursor:pointer; padding:6px; margin-left:auto;
      line-height:1;
    }
    @media(max-width:991px) {
      .mob-hamburger { display:flex; align-items:center; }
    }

    /* ============ DRAWER OVERLAY ============ */
    .drawer-overlay {
      display:none; position:fixed; inset:0; z-index:1100;
      background:rgba(0,0,0,0.55);
      backdrop-filter:blur(3px);
      -webkit-backdrop-filter:blur(3px);
    }
    .drawer-overlay.open { display:block; animation:ovIn .25s ease; }
    @keyframes ovIn { from{opacity:0} to{opacity:1} }

    /* ============ DRAWER ============ */
    .mob-drawer {
      position:fixed; top:0; left:0; bottom:0;
      width:300px; max-width:85vw;
      z-index:1200; background:#111827;
      display:flex; flex-direction:column;
      overflow-y:auto; overflow-x:hidden;
      transform:translateX(-100%);
      transition:transform .35s cubic-bezier(.4,0,.2,1);
    }
    .mob-drawer.open { transform:translateX(0); }

    /* Drawer Header */
    .mob-drawer-header {
      padding:22px 18px 16px;
      border-bottom:1px solid rgba(255,255,255,.08);
      display:flex; align-items:center; justify-content:space-between;
      flex-shrink:0;
    }
    .mob-drawer-header img { height:110px; object-fit:contain; }
    .mob-drawer-close {
      width:36px; height:36px; border-radius:50%;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      color:#fff; font-size:15px;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:background .2s; flex-shrink:0;
    }
    .mob-drawer-close:hover { background:rgba(255,255,255,.2); }

    /* Section label */
    .mob-sec-label {
      font-size:.58rem; font-weight:700; letter-spacing:2.5px;
      text-transform:uppercase; color:rgba(255,255,255,.3);
      padding:16px 18px 7px;
    }

    /* Nav item */
    .mob-nav-item {
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 18px; cursor:pointer;
      border-bottom:1px solid rgba(255,255,255,.05);
      transition:background .15s; user-select:none;
    }
    .mob-nav-item:hover { background:rgba(255,255,255,.06); }
    .mob-nav-left { display:flex; align-items:center; gap:10px; }
    .mob-nav-ico {
      width:34px; height:34px; border-radius:9px;
      display:flex; align-items:center; justify-content:center;
      font-size:14px; flex-shrink:0;
    }
    .mob-nav-label { font-size:.88rem; font-weight:600; color:rgba(255,255,255,.88); }
    .mob-nav-caret {
      font-size:12px; color:rgb(255, 255, 255);
      transition:transform .25s;
    }
    .mob-nav-caret.open { transform:rotate(90deg); }

    /* Submenu */
    .mob-submenu { display:none; background:rgba(0,0,0,.18); }
    .mob-submenu.open { display:block; }
    .mob-submenu a {
      display:flex; align-items:center; gap:8px;
      padding:10px 18px 10px 62px;
      color:rgb(238, 236, 236); font-size:.8rem; font-weight:500;
      text-decoration:none;
      border-bottom:1px solid rgba(255,255,255,.03);
      transition:color .15s, background .15s;
    }
    .mob-submenu a:hover { color:#fff; background:rgba(255,255,255,.04); }
    .mob-submenu a i { font-size:12px; color:var(--blue); flex-shrink:0; }

    /* CTA button */
    .mob-cta {
      margin:14px 18px 0;
      display:flex; align-items:center; justify-content:center; gap:8px;
      background:var(--blue); color:#fff; border:none; border-radius:10px;
      padding:13px; font-size:.85rem; font-weight:700;
      font-family:'Nunito',sans-serif;
      cursor:pointer; text-decoration:none;
      transition:background .2s;
    }

      .bilgi-form {
      margin:14px 18px 0;
      display:flex; align-items:center; justify-content:center; gap:8px;
      background:#00A86B; color:#fff; border:none; border-radius:10px;
      padding:13px; font-size:.85rem; font-weight:700;
      font-family:'Nunito',sans-serif;
      cursor:pointer; text-decoration:none;
      transition:background .2s;
    }
    .mob-cta:hover { background:var(--blue-dark); color:#fff; }

    /* Contact */
    .mob-contact {
      padding:14px 18px;
      display:flex; flex-direction:column; gap:9px;
      border-top:1px solid rgba(255,255,255,.07);
      margin-top:14px;
    }
    .mob-contact a {
      display:flex; align-items:center; gap:10px;
      color:rgba(255,255,255,.5); font-size:.78rem; text-decoration:none;
      transition:color .15s;
    }
    .mob-contact a:hover { color:rgba(255,255,255,.85); }
    .mob-contact-ico {
      width:30px; height:30px; border-radius:50%;
      background:rgba(0,71,171,.3); color:#60a5fa;
      display:flex; align-items:center; justify-content:center;
      font-size:13px; flex-shrink:0;
    }

    /* Social */
    .mob-social {
      padding:12px 18px 24px;
      display:flex; gap:9px;
      border-top:1px solid rgba(255,255,255,.07);
    }
    .mob-social a {
      width:34px; height:34px; border-radius:50%;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.5);
      display:flex; align-items:center; justify-content:center;
      font-size:14px; text-decoration:none; transition:all .2s;
    }
    .mob-social a:hover { background:rgba(255,255,255,.18); color:#fff; }
	

    /* ============ HERO ============ */
    .hero-section {
      background: linear-gradient(135deg, #222742 0%, #1f284c 100%);
      padding:1rem 0 1rem;
    }

    /* PHOTO SLIDER */
    .photo-slider {
      border-radius:22px;
      overflow:hidden;
      position:relative;
      height:370px;
      box-shadow:0 8px 40px rgba(0,0,0,0.5);
      background:#111;
    }

    .photo-slide {
      position:absolute; inset:0;
      opacity:0; transition:opacity .8s ease;
      display:flex; align-items:flex-end;
    }
    .photo-slide.active { opacity:1; }

    .photo-slide img {
      position:absolute; inset:0;
      width:100%; height:100%;
      object-fit:cover;
      
    }

    .photo-slide::after {
      content:'';
      position:absolute; inset:0;
     
    }

    .slide-info {
      position:relative; z-index:2;
      padding:1.8rem 2rem; width:100%;
    }
    .slide-cat {
      font-family:'Nunito',sans-serif; font-weight:800;
      font-size:.68rem; letter-spacing:2px; text-transform:uppercase;
      color:var(--green); margin-bottom:.35rem;
    }
    .slide-info h2 {
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:2rem; color:#fff; line-height:1.15; margin-bottom:.3rem;
      text-shadow:0 2px 12px rgba(0,0,0,.5);
    }
    .slide-info p { color:rgba(255,255,255,.7); font-size:.82rem; }

    .ps-ctrl {
      position:absolute; top:50%; transform:translateY(-50%);
      width:40px; height:40px; border-radius:50%;
	  background: rgb(203 203 203 / 71%);
      border: 1.5px solid rgb(187 187 187 / 80%);      
      color:#fff; display:flex; align-items:center; justify-content:center;
      cursor:pointer; z-index:10; transition:all .2s; backdrop-filter:blur(6px);
    }
    .ps-ctrl:hover { background:rgba(255,255,255,.25); transform:translateY(-50%) scale(1.1); }
    .ps-ctrl.prev { left:14px; }
    .ps-ctrl.next { right:14px; }

    .ps-dots {
      position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
      display:flex; gap:6px; z-index:10;
    }
    .ps-dot {
      width:12px; height:12px; border-radius:50%;
      background:rgba(255,255,255,.35); cursor:pointer; transition:all .25s; border:none;
	  box-shadow: 1px 3px 3px #141414; 
    }
    .ps-dot.active { background:#f5a623; width:22px; border-radius:4px;}
    
    /* Varsayılan: desktop görseli göster, mobil görseli gizle */
.photo-slide .mobile-only {
  display: none;
}
.photo-slide .desktop-only {
  display: block;
}

/* Mobil cihazlarda (max-width: 768px) desktop görselini gizle, mobil görseli göster */
@media (max-width: 768px) {
  .photo-slide .desktop-only {
    display: none;
  }
  .photo-slide .mobile-only {
    display: block;
  }
}



    /* ===== SECTION ===== */
    .gelisim-section { padding: 2.5rem 0; }

    /* ===== LEFT — CARD GRID ===== */
    .section-title {
      font-family:'Nunito',sans-serif;
      font-weight:900; font-size:1.3rem;
      color:#fff; margin-bottom:1.2rem;
    }
    .section-title span { color:var(--green); }

    .cat-card {
      position:relative; border-radius:16px; overflow:hidden;
      height:175px; cursor:pointer; display:block; text-decoration:none;
      transition:transform .3s, box-shadow .3s;
    }
    .cat-card:hover { transform:translateY(-5px) scale(1.02); box-shadow:0 14px 36px rgba(0,0,0,.55); }

    .cat-card .card-bg {
      position:absolute; inset:0; width:100%; height:100%;
      object-fit:cover; transition:transform .4s ease;
    }
    .cat-card:hover .card-bg { transform:scale(1.08); }

    .cat-card::before {
      content:''; position:absolute; inset:0; z-index:1;
      background:linear-gradient(160deg, rgb(10 20 60 / 23%) 0%, rgb(5 10 40 / 25%) 100%);
    }
    .cat-card::after {
      content:''; position:absolute; inset:0; z-index:2;
      background:rgba(30,60,180,.15); mix-blend-mode:multiply;
    }

    .cat-card-body {
      position:absolute; inset:0; z-index:3;
      display:flex; flex-direction:column;
      align-items:center; justify-content:flex-end;
      padding:.9rem; text-align:center;
    }

    .cat-icon {
      width:42px; height:42px; border-radius:11px;
      background:rgba(255,255,255,.1);
      backdrop-filter:blur(6px);
      border:1.5px solid rgba(255,255,255,.18);
      display:flex; align-items:center; justify-content:center;
      font-size:1.2rem; color:#fff; margin-bottom:.5rem;
      transition:background .3s, transform .3s;
    }
    .cat-card:hover .cat-icon { background:rgba(0,201,122,.25); transform:scale(1.1); }

    .cat-label {
      font-family:'Nunito',sans-serif; font-weight:800;
      font-size:1.1rem; color:#fff; letter-spacing:.3px;
      text-shadow:0 1px 6px rgba(0,0,0,.6);
    }

    .shine-border {
      position:absolute; inset:0; z-index:4; border-radius:16px;
      border:2px solid transparent; transition:border-color .3s; pointer-events:none;
    }
    .cat-card:hover .shine-border { border-color:rgba(0,201,122,.5); }

    /* ===== RIGHT — DARK PANEL ===== */
    .dark-panel {
      background:var(--dark2);
      border-radius:22px;
      display:flex; flex-direction:column;
      overflow:hidden;
      box-shadow:0 8px 40px rgba(0,0,0,.5);
      border:1px solid var(--border);
      height:100%;
    }

    .dp-header {
      padding:1.1rem 1.4rem .9rem;
      display:flex; align-items:flex-start; justify-content:space-between;
      border-bottom:1px solid var(--border); flex-shrink:0;
    }
    .dp-header-text small {
      color:rgba(255,255,255,.4); font-size:.6rem; font-weight:700;
      letter-spacing:2px; text-transform:uppercase; display:block; margin-bottom:.1rem;
    }
    .dp-header-text h3 {
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:1.45rem; color:#fff; line-height:1;
    }
    .dp-logo {
      width:40px; height:40px; border-radius:50%;
      background:var(--green); display:flex; align-items:center; justify-content:center;
      font-family:'Nunito',sans-serif; font-weight:900; font-size:.72rem; color:#fff;
    }

   
     .dp-section-label {
    padding: 10px;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(255 255 255 / 99%);
    flex-shrink: 0;
}
    }

    .dp-links { flex:1; padding:0 .8rem; display:flex; flex-direction:column; gap:.3rem; }

    .dp-link {
      display:flex; align-items:center; gap:.8rem;
      padding:.65rem .8rem; border-radius:12px; cursor:pointer;
      transition:all .2s; text-decoration:none;
      background:var(--dark3); border:1px solid var(--border);
    }
    .dp-link:hover { background:#253047; transform:translateX(3px); border-color:rgba(255,255,255,.15); }

    .dp-icon {
      width:38px; height:38px; border-radius:10px;
      display:flex; align-items:center; justify-content:center;
      font-size:1rem; flex-shrink:0;
    }
    .dp-icon.gr { background: rgb(245 166 35); color: #ffffff;}
    .dp-icon.gd { background: rgb(0 71 171); color: #ffffff; }
    .dp-icon.rd { background: rgb(0 71 171); color: #ffffff;}

    .dp-text { flex:1; min-width:0; }
    .dp-text strong {
      display:block; font-family:'Nunito',sans-serif;
      font-size:0.8rem; font-weight:800; color:#fff;
      white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
    }
    .dp-text span { font-size: 12px; color:#cca26d; }

    .dp-badge {
      font-size:.56rem; font-weight:800; padding:.18rem .5rem;
      border-radius:6px; letter-spacing:.5px; text-transform:uppercase; flex-shrink:0;
    }
    .dp-badge.yeni { background:rgba(0,201,122,.18); color:#cca26d; }
    .dp-badge.burs { background:rgba(245,166,35,.18); color:var(--gold); }
    .dp-badge.harita { background:rgba(229,57,53,.18); color:var(--red); }
    .dp-arrow { color:rgba(255,255,255,.25); font-size:.85rem; margin-left:.2rem; flex-shrink:0; }

    .dp-search {
      padding:2px; border-top:1px solid rgb(203 203 203); flex-shrink:0;
    }
    .dp-search-label {
      font-size:.58rem; font-weight:800; letter-spacing:2px;
      text-transform:uppercase; color:rgba(255,255,255,.3);
      margin-bottom:.4rem; display:block;
    }
    .dp-search-wrap { display:flex; gap:.45rem; padding-right: 5px; padding-left: 5px; }
    .dp-search-wrap input {
      flex:1; background:var(--dark3); border:2px solid rgb(217 217 217 / 95%);
      border-radius:10px; color:#fff; padding:.55rem .55rem; font-size:0.92rem;
      outline:none; transition:border .2s;
    }
    .dp-search-wrap input::placeholder { color:#ffffff; }
    .dp-search-wrap input:focus { border-color:var(--gold); }
    .dp-search-wrap button {
      background:var(--gold); border:none; border-radius:10px;
      color:#fff; padding:.48rem 1rem; font-size:1rem; font-weight:800;
      cursor:pointer; display:flex; align-items:center; gap:5px;
      transition:background .2s; white-space:nowrap; font-family:'Nunito',sans-serif;
    }
    .dp-search-wrap button:hover { background:var(--gold); }

    .dp-bottom-nav {
      display:flex; border-top:1px solid var(--border);
      background:#1c2433; flex-shrink:0; margin-top: 14px;
    }
    .dp-nav-btn {
      flex:1; display:flex; flex-direction:column; align-items:center;
      gap:3px; padding:.6rem .4rem; cursor:pointer;
      color:rgba(255,255,255,.3); transition:color .2s;
      text-decoration:none; font-size:.52rem; font-weight:800;
      letter-spacing:.5px; text-transform:uppercase;
      font-family:'Nunito',sans-serif; line-height:1.3;
    }
    .dp-nav-btn i { font-size:1.4rem; }
    .dp-nav-btn:hover { color:rgba(255,255,255,.65); }
    .dp-nav-btn.active { color:#ffffff; }


  /* ============ BOXES  ============ */
    .boxes-section {
      padding: 0rem 0 0rem;    
      position: relative;
      overflow: hidden;
    }
    .boxes-section .disc-bg {
      position:absolute; inset:0; pointer-events:none; z-index:0;
      background:
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(0,71,171,.22) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 85% 75%, rgba(0,201,122,.15) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(124,77,255,.08) 0%, transparent 60%);
    }

    /* Header */
    .boxes-header {
      position:relative; z-index:1;
      margin-bottom:3rem;
      display:flex; align-items:flex-end; justify-content:space-between;
      flex-wrap:wrap; gap:1rem;
    }
    .bx-eyebrow {
      display:inline-flex; align-items:center; gap:6px;
      background:rgba(0,201,122,.1); border:1px solid rgba(0,201,122,.25);
      color:#00c97a; border-radius:30px;
      font-size:.65rem; font-weight:800; letter-spacing:2px; text-transform:uppercase;
      padding:.28rem 1rem; margin-bottom:.8rem;
    }
    .boxes-header h3 {
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:2.1rem; color:#fff; line-height:1.1; margin:0;
    }
    .boxes-header h3 em {
      font-style:normal; display:block;
      background:linear-gradient(90deg,#4f8cff,#00c97a);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      font-size:1.8rem;
    }
    .boxes-header p { color:rgba(255,255,255,.3); font-size:.82rem; margin:.3rem 0 0; }
    .bx-see-all {
      display:inline-flex; align-items:center; gap:6px;
      background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.6); border-radius:30px;
      font-size:.72rem; font-weight:700; padding:.45rem 1.2rem;
      text-decoration:none; transition:all .2s; white-space:nowrap; align-self:center;
    }
    .bx-see-all:hover { background:rgba(255,255,255,.12); color:#fff; }

    /* MAIN GRID */
    .disc-grid {
      display:grid;
      grid-template-columns: repeat(12,1fr);
      grid-auto-rows: 148px;
      gap:12px;
      position:relative; z-index:1;
    }
	



    /* base tile */
    .disc-tile {
	display:flex;
  flex-direction:column;
  justify-content:flex-start;   /* değişti */
  padding: 4rem 1.2rem 1.2rem;  /* üst boşluk net */  
      position:relative; border-radius:22px; overflow:hidden;
      cursor:pointer; text-decoration:none;  
      background:var(--t-bg);
      border:1px solid var(--t-border, rgba(255,255,255,.07));
      transition:transform .35s cubic-bezier(.34,1.45,.64,1), box-shadow .3s;
    }
    .disc-tile:hover {
      transform:translateY(-8px) scale(1.015);
      box-shadow:0 24px 60px var(--t-shadow, rgba(0,0,0,.5));
      z-index:5;
    }
    .disc-tile::after {
      content:''; position:absolute; inset:0;
      background:linear-gradient(110deg,transparent 30%,rgba(255,255,255,.06) 50%,transparent 70%);
      transform:translateX(-120%); transition:transform .55s ease;
    }
    .disc-tile:hover::after { transform:translateX(120%); }

    /* icon */
    .disc-ico {
      position:absolute; top:1rem; left:1.1rem;
      width:40px; height:40px; border-radius:12px;
      background:var(--t-ico-bg);
      display:flex; align-items:center; justify-content:center;
      font-size:1.1rem; color:#fff;
      transition:transform .35s cubic-bezier(.34,1.45,.64,1);
    }
    .disc-tile:hover .disc-ico { transform:scale(1.18) rotate(-8deg); }

    .disc-num {
      position:absolute; top:.9rem; right:1rem;
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:.55rem; letter-spacing:1.5px; color:rgba(255,255,255,.12);
    }
  	
	.disc-tile h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .82rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .5px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
    margin-left: 3px;
	margin-top:5px;
}

    .disc-tile p {
      font-size:.68rem; color:rgba(255,255,255,.45);
      line-height:1.5; margin:0; position:relative; z-index:1;
      transition:color .3s;
      display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    }
    .disc-tile:hover p { color:rgba(255,255,255,.7); }

    .disc-cta {
      display:flex; align-items:center; justify-content:space-between;
      margin-top:.55rem; position:relative; z-index:1;
    }
    .disc-cta-label {
      font-size:.6rem; font-weight:800; letter-spacing:1px;
      text-transform:uppercase; color:var(--t-accent);
      opacity:0; transform:translateY(4px); transition:all .3s;
    }
    .disc-tile:hover .disc-cta-label { opacity:1; transform:translateY(0); }
    .disc-cta-btn {
      width:26px; height:26px; border-radius:50%;
      background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.08);
      display:flex; align-items:center; justify-content:center;
      color:rgba(255,255,255,.3); font-size:.7rem; transition:all .3s;
    }
    .disc-tile:hover .disc-cta-btn {
      background:var(--t-accent); border-color:var(--t-accent);
      color:#fff; transform:rotate(-40deg);
    }

    /* Grid positions */
    .disc-tile.t1  { grid-column:1/4;   grid-row:2; }
    .disc-tile.t2  { grid-column:4/7;   grid-row:2; }
    .disc-tile.t3  { grid-column:7/10;  grid-row:1/3; justify-content:flex-start; padding-top:3.5rem; }
    .disc-tile.t3 .disc-ico { width:48px; height:48px; font-size:1.3rem; border-radius:14px; }
    .disc-tile.t3 h5 { font-size:1.1rem; margin-bottom:.5rem; margin-top: 18px; }
    .disc-tile.t3 p { -webkit-line-clamp:4; }
    .disc-tile.t3 .disc-cta { position:absolute; bottom:1.1rem; left:1.2rem; right:1.2rem; }
    .disc-tile.t4  { grid-column:10/13; grid-row:1; }
    .disc-tile.t5  { grid-column:1/3;   grid-row:1; }
    .disc-tile.t6  { grid-column:3/5;   grid-row:1; }
    .disc-tile.t7  { grid-column:5/7;   grid-row:1; }
    .disc-tile.t8  { grid-column:10/13; grid-row:2; }

    /* COLOURS */
    .t1 { --t-bg:linear-gradient(145deg,#0d1f4a,#1a3570); --t-ico-bg:rgba(79,140,255,.3); --t-accent:#4f8cff; --t-border:rgba(79,140,255,.35); --t-shadow:rgba(79,140,255,.25); }
    .t2 { --t-bg:linear-gradient(145deg,#064e2e,#0d7a48); --t-ico-bg:rgba(0,201,122,.3); --t-accent:#00c97a; --t-border:rgba(0,201,122,.4); --t-shadow:rgba(0,201,122,.3); }
    .t3 { --t-bg:linear-gradient(170deg,#1a0b3e,#2d1070,#1a0b3e); --t-ico-bg:rgba(167,139,250,.3); --t-accent:#a78bfa; --t-border:rgba(167,139,250,.35); --t-shadow:rgba(167,139,250,.22); }
    .t4 { --t-bg:linear-gradient(145deg,#063545,#0d6078); --t-ico-bg:rgba(34,211,238,.25); --t-accent:#22d3ee; --t-border:rgba(34,211,238,.3); --t-shadow:rgba(34,211,238,.2); }
    .t5 { --t-bg:linear-gradient(145deg,#3d2000,#7a4200); --t-ico-bg:rgba(251,191,36,.25); --t-accent:#fbbf24; --t-border:rgba(251,191,36,.3); --t-shadow:rgba(251,191,36,.2); }
    .t6 { --t-bg:linear-gradient(145deg,#3d0a0a,#7a1515); --t-ico-bg:rgba(251,113,133,.3); --t-accent:#fb7185; --t-border:rgba(251,113,133,.35); --t-shadow:rgba(251,113,133,.25); }
    .t7 { --t-bg:linear-gradient(145deg,#3d1a00,#7a3600); --t-ico-bg:rgba(251,146,60,.25); --t-accent:#fb923c; --t-border:rgba(251,146,60,.3); --t-shadow:rgba(251,146,60,.22); }
    .t8 { --t-bg:linear-gradient(145deg,#12103d,#201c70); --t-ico-bg:rgba(129,140,248,.25); --t-accent:#818cf8; --t-border:rgba(129,140,248,.3); --t-shadow:rgba(129,140,248,.2); }

    /* BOTTOM SMALL GRID */
    .disc-grid-2 {
      display:grid; grid-template-columns:repeat(4,1fr);
      gap:12px; margin-top:12px; position:relative; z-index:1;
    }
    .disc-tile-sm { border-radius:18px; padding: 3.2rem 1.1rem 1rem; min-height:100px; }
    .disc-tile-sm h5 { font-size:.75rem; }
    .disc-tile-sm .disc-ico { width:34px; height:34px; font-size:.95rem; border-radius:10px; top:.8rem; left:.9rem; }
    .disc-tile-sm .disc-num { top:.8rem; right:.9rem; }
    .disc-tile-sm .disc-cta { margin-top:.4rem; }

    .t9  { --t-bg:linear-gradient(145deg,#1e0a06,#5c1a0f); --t-ico-bg:rgba(239,68,68,.25);  --t-accent:#ef4444; --t-border:rgba(239,68,68,.3);  --t-shadow:rgba(239,68,68,.2); }
    .t10 { --t-bg:linear-gradient(145deg,#04302a,#066e5e); --t-ico-bg:rgba(45,212,191,.25); --t-accent:#2dd4bf; --t-border:rgba(45,212,191,.3);  --t-shadow:rgba(45,212,191,.2); }
    .t11 { --t-bg:linear-gradient(145deg,#1e1a04,#4a3f08); --t-ico-bg:rgba(234,179,8,.25);  --t-accent:#eab308; --t-border:rgba(234,179,8,.3);   --t-shadow:rgba(234,179,8,.2); }
    .t12 { --t-bg:linear-gradient(145deg,#0e1e10,#1a4020); --t-ico-bg:rgba(74,222,128,.25); --t-accent:#4ade80; --t-border:rgba(74,222,128,.3);  --t-shadow:rgba(74,222,128,.2); }

    @media(max-width:991px){
      .disc-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:130px; }
      .disc-tile  { grid-column:auto !important; grid-row:auto !important; }
      .disc-tile.t3 { grid-row:auto;  padding: 2.9rem 1.5rem 0.5rem; }
      .disc-tile.t3 .disc-ico { width:40px; height:40px; font-size:1.1rem; }
      .disc-tile.t3 h5 { font-size:.82rem; }
      .disc-tile.t3 p { -webkit-line-clamp:2; }
      .disc-tile.t3 .disc-cta { position:relative; bottom:auto; left:auto; right:auto; }
      .disc-grid-2 { grid-template-columns:repeat(2,1fr); }
    }
    @media(max-width:540px){
      .disc-grid { gap:8px; grid-auto-rows:120px; }
      .disc-grid-2 { gap:8px; }
      .boxes-header h3 { font-size:1.6rem; }
      .boxes-header h3 em { font-size:1.4rem; }
    }


     /* ══ BANNER ══ */
    .gu-banner {
      position: relative;
      overflow: hidden;
      padding: 6rem 0 0;
    }

    
    
 @media(max-width:540px){
       .gu-banner {
      position: relative;
      overflow: hidden;
      padding: 1rem 0 0;
    }
 }


     /* Arka plan fotoğrafı — flu */
    .gu-banner-photo {
      position: absolute; inset: 0;
      background-image: url('https://panel.gelisim.edu.tr/assets/Login/header-img.jpg');
      background-size: cover;
      background-position: center 23%;
      filter: blur(0px) brightness(0.5) saturate(-0,15);
      z-index: 0;
    }

    /* Renk overlay */
    .gu-banner-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(105deg,
        rgba(13,31,78,.82) 0%,
        rgba(26,63,160,.68) 50%,
        rgba(30,111,217,.48) 100%);
      z-index: 1;
    }

    /* İçerik üstte */
    .gu-banner-content { position: relative; z-index: 2; }

    .gu-banner h1 {
      font-family: 'Nunito', serif;
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700; color: #fff; margin: 0;
    }
    .gu-banner .breadcrumb { background: transparent; padding: 0; margin: .5rem 0 0; }
    .gu-banner .breadcrumb-item,
    .gu-banner .breadcrumb-item a {
      font-size: .83rem; color: rgba(255,255,255,.75);
      text-decoration: none; font-weight: 600;
    }
    .gu-banner .breadcrumb-item.active { color: rgba(255,255,255,.95); }
    .gu-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

    

    /* Kıvrımlı dalga */
    .gu-wave { position: relative; z-index: 2; display: block; width: 100%; line-height: 0; margin-bottom: -2px; }
    .gu-wave svg { display: block; width: 100%; }

/* ══ insayfalar content ══ */
    .gu-card {
      background: var(--white); border-radius: var(--r);
      box-shadow: 0 4px 20px rgba(13,31,78,.08);
      padding: 2rem 2.25rem; margin-bottom: 1.5rem;
    }
    .gu-badge {
      display: inline-block; background: var(--light); color: var(--blue);
      font-weight: 800; font-size: .72rem; letter-spacing: .08em;
      text-transform: uppercase; padding: .28rem .85rem; border-radius: 2rem; margin-bottom: .7rem;
    }
   
    /* .gu-card h2 { */
      /* font-family: 'Nunito', serif; font-size: 1.45rem; */
      /* color: var(--navy); font-weight: 700; */
      /* border-bottom: 3px solid var(--gold); display: inline-block; */
      /* padding-bottom: .25rem; margin-bottom: 1.2rem; */
    /* } */
	

   .gu-card h2 {
    font-family: 'Nunito', serif;
    font-size: 1.45rem;
    color: var(--navy);
    font-weight: 700;
    border-bottom: 3px solid var(--gold);
    display: table;
    padding-bottom: .25rem;
    margin-bottom: 1.2rem;
}
   
    .gu-card ul li { font-size: .92rem; line-height: 1.9; color: #3d4f74; }
    .gu-card h5 { font-weight: 800; color: var(--navy); margin-top: 1.4rem; margin-bottom: .6rem; }

    .gu-info {
      border-radius: .85rem; padding: 1rem 1.25rem;
      display: flex; gap: .85rem; align-items: flex-start;
      font-size: .875rem; font-weight: 600; margin-bottom: .85rem;
    }
    .gu-info.blue   { background: #e8f0fe; color: #1a3fa0; }
    .gu-info.yellow { background: #fff8e7; color: #8a5e00; }
    .gu-info .bi    { font-size: 1.15rem; flex-shrink: 0; margin-top: .05rem; }

   
    .gu-acc-item { border-radius: .75rem; overflow: hidden; margin-bottom: .5rem; border: 1px solid #e3e9f5; }
    .gu-acc-item .accordion-button { font-size: .9rem; font-weight: 700; color: var(--navy); }
    .gu-acc-item .accordion-button:not(.collapsed) { color: var(--blue); background: var(--light); box-shadow: none; }
    .gu-acc-item .accordion-body { font-size: .875rem; color: #3d4f74; line-height: 1.8; }

      /* ══ SIDEBAR (sağ) ══ */
    .gu-sticky { position: sticky; top: 78px; }

    /* Sizi Arayalım kartı */
    .gu-call-card {
      background: linear-gradient(145deg, #0d1f4e 0%, #1a3fa0 100%);
      border-radius: var(--r);
      box-shadow: 0 8px 28px rgba(13,31,78,.22);
      padding: 1.6rem 1.5rem 1.7rem;
      margin-bottom: 1.25rem;
      color: #fff;
      border-radius: 22px;
    }
    .gu-call-card .call-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1rem;
    }
    .gu-call-card h6 {
      font-weight: 800; font-size: 1rem;
      color: #fff; margin-bottom: .35rem;
    }
    .gu-call-card p {
      font-size: .82rem; color: rgba(255,255,255,.75);
      line-height: 1.55; margin-bottom: 1.1rem;
    }
    .gu-call-card .gu-input {
      width: 100%; border: none; border-radius: .65rem;
      padding: .6rem .9rem; font-size: .875rem;
      font-family: 'Nunito', sans-serif; font-weight: 600;
      background: rgba(255,255,255,.15); color: #fff;
      outline: none; margin-bottom: .65rem;
      transition: background .2s;
    }
    .gu-call-card .gu-input::placeholder { color: rgba(255,255,255,.55); }
    .gu-call-card .gu-input:focus { background: rgba(255,255,255,.22); }
    .gu-call-card .gu-select {
      width: 100%; border: none; border-radius: .65rem;
      padding: .6rem .9rem; font-size: .875rem;
      font-family: 'Nunito', sans-serif; font-weight: 600;
      background: rgba(255,255,255,.15); color: #fff;
      outline: none; margin-bottom: .65rem;
      -webkit-appearance: none; appearance: none;
      cursor: pointer;
    }
    .gu-call-card .gu-select option { background: #1a3fa0; color: #fff; }
    .gu-call-card .btn-arama {
      width: 100%; background: #cca26d; color: #fff;
      border: none; border-radius: .75rem;
      padding: .65rem 1rem; font-size: .9rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center; gap: .5rem;
      cursor: pointer; transition: background .2s, transform .15s;
      font-family: 'Nunito', sans-serif; margin-top: .3rem;
    }
    .gu-call-card .btn-arama:hover { background: #e09610; transform: translateY(-1px); }

    .gu-links-card {
      background: #1a3fa0; border-radius: var(--r);
      box-shadow: 0 4px 20px rgba(13,31,78,.08); overflow: hidden;
    }
    .gu-links-title {
      background: linear-gradient(120deg, var(--navy), var(--blue));
      color: #fff; font-weight: 800; font-size: .9rem;
      padding: .9rem 1.2rem; letter-spacing: .02em;
      display: flex; align-items: center; gap: .5rem;
    }
    .gu-links-nav a {
      display: flex; align-items: center; gap: .5rem;
      font-size: .86rem; font-weight: 700; color: var(--navy);
      text-decoration: none; padding: .7rem 1.2rem;
      border-left: 3px solid transparent; border-top: 1px solid #eef1f8;
      transition: all .2s;
    }
    .gu-links-nav a:first-child { border-top: none; }
    .gu-links-nav a:hover { background: var(--light); color: var(--mid); border-left-color: var(--mid); }
    .gu-links-nav a .bi { color: var(--mid); font-size: .95rem; }
    
	
	
	
	 /* ============================
       YKS BANNER SECTION
    ==============================*/
    .yks-banner-section {
      padding: 2.5rem 0;
      background: #f0f2f5;
    }

    /* --- SHARED BANNER BASE --- */
    .yks-banner {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      min-height: 160px;
      display: flex;
      align-items: center;
      padding: 1rem 1rem;
    }

    /* animated wave bg */
    .yks-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,80 C360,160 720,0 1440,80 L1440,160 L0,160 Z'/%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,100 C400,20 900,140 1440,60 L1440,160 L0,160 Z'/%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
      pointer-events: none;
      z-index: 0;
    }

    .yks-banner > * { position: relative; z-index: 1; }

    /* ---- LEFT BANNER: NET HESAPLAMA ---- */
    .yks-net-banner {
      background: linear-gradient(120deg, #1a1f5e 0%, #2d1b6e 40%, #1e1060 100%);
      box-shadow: 0 8px 32px rgba(30, 10, 80, 0.35);
    }

    /* blob decos */
    .yks-net-blob1 {
      position: absolute; z-index: 0;
      width: 140px; height: 100px;
      background: linear-gradient(135deg, #e040fb, #7c4dff);
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
      left: 60px; top: 50%;
      transform: translateY(-50%);
      filter: blur(18px);
      opacity: .7;
    }
    .yks-net-blob2 {
      position: absolute; z-index: 0;
      width: 200px; height: 80px;
      background: linear-gradient(135deg, #7c4dff, #e040fb);
      border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
      left: 0; bottom: -20px;
      filter: blur(22px);
      opacity: .5;
    }
    .yks-net-blob3 {
      position: absolute; z-index: 0;
      width: 120px; height: 80px;
      background: linear-gradient(135deg, #e040fb, #ad1457);
      border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%;
      right: 180px; bottom: -10px;
      filter: blur(20px);
      opacity: .45;
    }

    .yks-net-content {
      flex: 1;
      text-align: center;
      padding: 0 1rem;
    }
    .yks-net-content h2 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.55rem;
      color: #fff;
      letter-spacing: .5px;
      margin-bottom: .35rem;
      text-shadow: 0 2px 12px rgba(0,0,0,.4);
    }
    .yks-net-content p {
      color: rgba(255,255,255,.72);
      font-size: .84rem;
      margin: 0;
      line-height: 1.5;
    }
    .yks-net-content p strong { color: #fff; }

    .yks-net-btn {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: .85rem;
      background: linear-gradient(135deg, #7c4dff, #e040fb);
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-weight: 800; font-size: .78rem;
      letter-spacing: 1px; text-transform: uppercase;
      padding: .55rem 1.4rem;
      border-radius: 10px;
      text-decoration: none;
      transition: all .25s;
      box-shadow: 0 4px 16px rgba(124,77,255,.4);
    }
    .yks-net-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 22px rgba(224,64,251,.5);
      color: #fff;
    }

    .yks-net-icon {
      flex-shrink: 0;
      width: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .yks-net-icon-stack {
      position: relative;
      width: 80px; height: 80px;
    }
    .yks-net-icon-cal {
      position: absolute;
      top: 0; right: 0;
      width: 58px; height: 58px;
      background: linear-gradient(135deg, #5c6bc0, #3949ab);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: #fff;
      box-shadow: 0 4px 16px rgba(57,73,171,.4);
    }
    .yks-net-icon-list {
      position: absolute;
      bottom: 0; left: 0;
      width: 46px; height: 46px;
      background: #fff;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #3949ab;
      box-shadow: 0 4px 12px rgba(0,0,0,.2);
    }

    /* wave bottom decoration */
    .yks-net-wave {
      position: absolute;
      bottom: 0; right: 0; left: 0;
      height: 50px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 50'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,30 C250,0 500,50 750,20 C900,5 950,35 1000,25 L1000,50 L0,50 Z'/%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,40 C300,10 600,45 1000,20 L1000,50 L0,50 Z'/%3E%3C/svg%3E") no-repeat bottom;
      background-size: cover;
      pointer-events: none;
    }

    /* ---- RIGHT BANNER: TERCİH ROBOTU ---- */
    .yks-robot-banner {
      background: linear-gradient(120deg, #1a2045 0%, #1e2a5e 60%, #162040 100%);
      box-shadow: 0 8px 32px rgba(10, 20, 60, 0.35);
    }

    .yks-robot-wave {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 160'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='2' d='M0,80 C100,40 200,120 300,80 C400,40 500,120 600,80 C700,40 750,100 800,80'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5' d='M0,100 C150,60 300,130 450,90 C550,65 650,110 800,95'/%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1' d='M0,60 C200,100 350,30 500,70 C650,110 720,50 800,65'/%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
      pointer-events: none;
    }

    .yks-robot-img {
      flex-shrink: 0;
      width: 110px;
      display: flex; align-items: center; justify-content: center;
    }
    .yks-robot-img .yks-robot-circle {
      width: 90px; height: 90px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
      border: 2px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 3rem;
      position: relative;
    }
    /* robot face glow */
    .yks-robot-img .yks-robot-circle::after {
      content: '';
      position: absolute; inset: -8px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(100,180,255,.15) 0%, transparent 70%);
    }

    .yks-robot-content { flex: 1;  }
    .yks-robot-content h2 {
      font-family: 'Nunito', sans-serif;
      font-weight: 900;
      font-size: 1.45rem;
      color: #fff;
      margin-bottom: .3rem;
    }
    .yks-robot-content p {
      color: rgba(255,255,255,.65);
      font-size: .83rem;
      margin: 0;
      font-weight: 600;
    }

    .yks-robot-btn {
      flex-shrink: 0;
    }
    .yks-robot-btn a {
      display: inline-block;
      background: transparent;
      border: 2px solid rgba(255,255,255,.35);
      color: #fff;
      font-family: 'Nunito', sans-serif;
      font-weight: 800;
      font-size: .78rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: .65rem 1.4rem;
      border-radius: 10px;
      text-decoration: none;
      transition: all .25s;
      white-space: nowrap;
    }
    .yks-robot-btn a:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.6);
      transform: scale(1.04);
    }
	
	 /* ============================
       IGU PHOTO SECTION
    ==============================*/
    .igup-section {
      padding: 3.5rem 0 4rem;
      background: linear-gradient(180deg, #eef2ff 0%, #f0f2f5 100%);
    }

    /* Header */
    .igup-header { text-align:center; margin-bottom:2.5rem; }
    .igup-eyebrow {
      display:inline-flex; align-items:center; gap:7px;
      background:rgba(0,71,171,.08); border:1px solid rgba(0,71,171,.15);
      border-radius:25px; padding:.3rem 1rem;
      font-size:.7rem; font-weight:800; color:#0047AB;
      letter-spacing:1.5px; text-transform:uppercase; margin-bottom:.9rem;
    }
    .igup-header h2 {
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:2.4rem; color:#0047AB; margin-bottom:.3rem;
    }
    .igup-header h2 span { color:#1a1a2e; }
    .igup-header p { color:#777; font-size:.88rem; }

    /* Category tabs */
    .igup-tabs {
      display:flex; justify-content:center; gap:.6rem;
      flex-wrap:wrap; margin-bottom:1.8rem;
    }
    .igup-tab {
      display:flex; align-items:center; gap:6px;
      padding:.5rem 1.2rem; border-radius:30px;
      font-family:'Nunito',sans-serif; font-weight:800;
      font-size:.8rem; cursor:pointer; border:2px solid #e0e6f0;
      background:#fff; color:#555; transition:all .2s;
    }
    .igup-tab i { font-size:.95rem; }
    .igup-tab:hover { border-color:#0047AB; color:#0047AB; }
    .igup-tab.active {
      background:#0047AB; color:#fff; border-color:#0047AB;
      box-shadow:0 4px 14px rgba(0,71,171,.3);
    }

    /* 4-card grid */
    .igup-grid {
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:14px;
    }

    .igup-card {
      border-radius:18px; overflow:hidden;
      position:relative; cursor:pointer;
      height:260px;
      box-shadow:0 4px 20px rgba(0,0,0,.1);
      transition:transform .3s, box-shadow .3s;
      display:none;
    }
    .igup-card.visible { display:block; }
    .igup-card:hover {
      transform:translateY(-6px) scale(1.01);
      box-shadow:0 14px 36px rgba(0,0,0,.2);
    }

    .igup-card img {
      width:100%; height:100%; object-fit:cover;
      transition:transform .45s ease;
    }
    .igup-card:hover img { transform:scale(1.07); }

    /* gradient overlay */
    .igup-card::before {
      content:''; position:absolute; inset:0; z-index:1;
      background:linear-gradient(to top, rgba(0,20,80,.75) 0%, rgba(0,20,80,.1) 50%, transparent 100%);
      transition:opacity .3s;
    }

    /* card info bottom */
    .igup-card-info {
      position:absolute; bottom:0; left:0; right:0; z-index:2;
      padding:1.1rem 1.2rem;
      transform:translateY(6px); transition:transform .3s;
    }
    .igup-card:hover .igup-card-info { transform:translateY(0); }

    .igup-card-cat {
      font-size:.62rem; font-weight:800; letter-spacing:1.5px;
      text-transform:uppercase; color:rgba(255,255,255,.65);
      margin-bottom:.2rem;
    }
    .igup-card-title {
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:1rem; color:#fff;
      text-shadow:0 1px 6px rgba(0,0,0,.4);
    }

    /* zoom icon */
    .igup-zoom-btn {
      position:absolute; top:12px; right:12px; z-index:3;
      width:36px; height:36px; border-radius:50%;
      background:rgba(255,255,255,.15); backdrop-filter:blur(6px);
      border:1.5px solid rgba(255,255,255,.3);
      display:flex; align-items:center; justify-content:center;
      color:#fff; font-size:.9rem;
      opacity:0; transform:scale(.7) rotate(-15deg);
      transition:all .3s ease;
    }
    .igup-card:hover .igup-zoom-btn { opacity:1; transform:scale(1) rotate(0); }

    /* number badge */
    .igup-num {
      position:absolute; top:12px; left:12px; z-index:3;
      width:28px; height:28px; border-radius:8px;
      background:rgba(0,0,0,.35); backdrop-filter:blur(4px);
      display:flex; align-items:center; justify-content:center;
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:.7rem; color:rgba(255,255,255,.8);
    }

    /* all photos btn */
    .igup-footer { text-align:center; margin-top:2rem; }
    .igup-all-btn {
      display:inline-flex; align-items:center; gap:8px;
      background:#0047AB; color:#fff;
      font-family:'Nunito',sans-serif; font-weight:800;
      font-size:.85rem; border-radius:12px;
      padding:.75rem 2rem; text-decoration:none;
      transition:all .25s;
      box-shadow:0 4px 18px rgba(0,71,171,.3);
    }
    .igup-all-btn:hover {
      background:#00307a; color:#fff;
      transform:translateY(-2px);
      box-shadow:0 8px 24px rgba(0,71,171,.4);
    }

    /* ===== LIGHTBOX ===== */
    .igup-lightbox {
      display:none; position:fixed; inset:0; z-index:9999;
      background:rgba(0,0,0,.93); backdrop-filter:blur(10px);
      align-items:center; justify-content:center;
    }
    .igup-lightbox.open { display:flex; animation:lbIn .25s ease; }
    @keyframes lbIn { from{opacity:0;transform:scale(.96)} to{opacity:1;transform:scale(1)} }

    .igup-lb-inner {
      position:relative; max-width:900px; width:90vw;
    }
    .igup-lb-inner img {
      width:100%; max-height:80vh; object-fit:contain;
      border-radius:16px;
      box-shadow:0 20px 80px rgba(0,0,0,.6);
    }
    .igup-lb-caption {
      text-align:center; margin-top:1rem;
      color:rgba(255,255,255,.7); font-size:.85rem;
    }
    .igup-lb-caption strong { color:#fff; font-family:'Nunito',sans-serif; font-size:1rem; }

    .igup-lb-close {
      position:fixed; top:20px; right:24px;
      width:44px; height:44px; border-radius:50%;
      background:rgba(255,255,255,.12);
      border:1.5px solid rgba(255,255,255,.25);
      color:#fff; font-size:1.1rem;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:background .2s; z-index:10001;
    }
    .igup-lb-close:hover { background:rgba(255,255,255,.25); }

    .igup-lb-prev, .igup-lb-next {
      position:fixed; top:50%; transform:translateY(-50%);
      width:46px; height:46px; border-radius:50%;
      background:rgba(255,255,255,.12);
      border:1.5px solid rgba(255,255,255,.2);
      color:#fff; font-size:1.1rem;
      display:flex; align-items:center; justify-content:center;
      cursor:pointer; transition:all .2s; z-index:10001;
    }
    .igup-lb-prev { left:20px; }
    .igup-lb-next { right:20px; }
    .igup-lb-prev:hover, .igup-lb-next:hover { background:rgba(255,255,255,.25); }

    @media(max-width:768px) {
      .igup-grid { grid-template-columns:1fr 1fr; }
      .igup-card { height:180px; }
      .igup-header h2 { font-size:1.8rem; }
    }
    @media(max-width:480px) {
      .igup-grid { grid-template-columns:1fr; }
    }
	
	 /* ============================
       STU TESTIMONIAL SECTION
    ==============================*/
    .stut-section {
      padding: 4rem 0 5rem;
      background: linear-gradient(180deg, #eef2ff 0%, #e8edf5 100%);
      overflow: hidden;
    }

    /* Header */
    .stut-header { text-align:center; margin-bottom:3rem; }
    .stut-eyebrow {
      display:inline-flex; align-items:center; gap:7px;
      background:rgba(0,71,171,.09); border:1px solid rgba(0,71,171,.18);
      border-radius:25px; padding:.3rem 1.1rem;
      font-size:.68rem; font-weight:800; color:#0047AB;
      letter-spacing:1.5px; text-transform:uppercase; margin-bottom:1rem;
    }
    .stut-header h2 {
      font-family:'Nunito',sans-serif; font-weight:900;
      font-size:2.3rem; color:#1a1a2e; margin-bottom:.5rem;
    }
    .stut-header h2 span { color:#0047AB; }
    .stut-header p { color:#888; font-size:.88rem; max-width:480px; margin:0 auto; }

    /* ===== CAROUSEL WRAPPER ===== */
    .stut-carousel-wrap {
      position: relative;
      padding: 0 3rem;
    }

    /* Bootstrap carousel fade override */
    #stutCarousel .carousel-item { transition: transform .55s ease; }

    /* ===== CARD ===== */
    .stut-card {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,40,120,.12);
      display: flex;
      min-height: 320px;
    }

    /* LEFT: text side */
    .stut-left {
      flex: 1;
      padding: 2.5rem 2rem 2.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
    }

    /* big quote mark */
    .stut-quote-mark {
      position: absolute;
      bottom: 1.5rem; left: 2rem;
      font-size: 6rem;
      line-height: 1;
      color: rgba(0,71,171,.07);
      font-family: Georgia, serif;
      font-weight: 900;
      pointer-events: none;
      user-select: none;
    }

    .stut-dept-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: #f0f4ff; border: 1px solid #d6e0ff;
      color: #0047AB; border-radius: 8px;
      font-size: .67rem; font-weight: 800;
      letter-spacing: .5px; text-transform: uppercase;
      padding: .28rem .8rem;
      margin-bottom: 1.1rem;
      width: fit-content;
    }

    .stut-text {
      font-size: .88rem;
      color: #444;
      line-height: 1.75;
      flex: 1;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .stut-student-row {
      display: flex; align-items: center; gap: .9rem;
    }
    .stut-ava {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, #0047AB, #1976d2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Nunito', sans-serif; font-weight: 900;
      font-size: .9rem; color: #fff;
      border: 3px solid #e8edf5; flex-shrink: 0;
    }
    .stut-ava img {
      width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    }
    .stut-info strong {
      display: block; font-family: 'Nunito', sans-serif;
      font-weight: 900; font-size: .92rem; color: #1a1a2e;
    }
    .stut-info span { font-size: .72rem; color: #999; }

    /* star rating */
    .stut-stars {
      color: #FFC107; font-size: .75rem; margin-top: 2px;
    }

    /* RIGHT: image side */
    .stut-right {
      flex: 0 0 340px;
      position: relative;
      overflow: hidden;
    }
    .stut-right img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .stut-card:hover .stut-right img { transform: scale(1.05); }

    /* gradient overlay on image */
    .stut-right::before {
      content: '';
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(135deg, rgba(0,30,100,.5) 0%, rgba(0,20,80,.2) 100%);
    }

    /* PLAY BUTTON with pulse */
    .stut-play-btn {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      width: 68px; height: 68px;
      border-radius: 50%;
      background: rgba(255,255,255,.95);
      border: none;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
      transition: transform .25s, box-shadow .25s;
    }
    .stut-play-btn i {
      font-size: 1.6rem; color: #0047AB;
      margin-left: 4px;
    }
    .stut-play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      box-shadow: 0 8px 30px rgba(0,0,0,.4);
    }

    /* Pulse rings */
    .stut-pulse {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2; pointer-events: none;
    }
    .stut-pulse span {
      position: absolute;
      top: 50%; left: 50%;
      width: 68px; height: 68px;
      border-radius: 50%;
      background: rgba(255,255,255,.25);
      transform: translate(-50%, -50%);
      animation: stuPulse 2.5s ease-out infinite;
    }
    .stut-pulse span:nth-child(2) { animation-delay: .8s; }
    .stut-pulse span:nth-child(3) { animation-delay: 1.6s; }

    @keyframes stuPulse {
      0% { transform: translate(-50%,-50%) scale(1); opacity:.7; }
      100% { transform: translate(-50%,-50%) scale(2.4); opacity:0; }
    }

    /* image label bottom */
    .stut-img-label {
      position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
      background: linear-gradient(to top, rgba(0,20,80,.85), transparent);
      padding: 1.2rem 1.2rem .9rem;
    }
    .stut-img-label-dept {
      font-size: .62rem; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; color: rgba(255,255,255,.6);
      margin-bottom: .15rem;
    }
    .stut-img-label-name {
      font-family: 'Nunito', sans-serif; font-weight: 900;
      font-size: .95rem; color: #fff;
    }

    /* ===== CAROUSEL CONTROLS ===== */
    .stut-prev-btn, .stut-next-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 50px; height: 50px; border-radius: 50%;
      background: #fff; border: 2px solid #dde5f2;
      color: #0047AB; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all .2s; z-index: 10;
      box-shadow: 0 4px 16px rgba(0,0,0,.1);
    }
    .stut-prev-btn { left: 0; }
    .stut-next-btn { right: 0; }
    .stut-prev-btn:hover, .stut-next-btn:hover {
      background: #0047AB; color: #fff; border-color: #0047AB;
      transform: translateY(-50%) scale(1.08);
    }

    /* dots */
    .stut-dots {
      display: flex; justify-content: center; gap: 7px; margin-top: 2rem;
    }
    .stut-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #c5d0e8; border: none; cursor: pointer; transition: all .25s;
      padding: 0;
    }
    .stut-dot.active { background: #0047AB; width: 24px; border-radius: 4px; }

    /* progress bar */
    .stut-progress {
      height: 3px; background: #e0e6f0; border-radius: 2px;
      margin: 1rem auto 0; max-width: 200px; overflow: hidden;
    }
    .stut-progress-bar {
      height: 100%; background: #0047AB; border-radius: 2px;
      width: 25%; transition: width .4s ease;
    }

    /* ===== VIDEO MODAL ===== */
    .stut-modal {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,.92); backdrop-filter: blur(12px);
      align-items: center; justify-content: center;
    }
    .stut-modal.open { display: flex; animation: stutMIn .3s ease; }
    @keyframes stutMIn { from{opacity:0;transform:scale(.95)} to{opacity:1;transform:scale(1)} }

    .stut-modal-box {
      background: #0f172a;
      border-radius: 20px; overflow: hidden;
      width: 90vw; max-width: 820px;
      box-shadow: 0 40px 100px rgba(0,0,0,.7);
      position: relative;
    }

    .stut-modal-video {
      position: relative; padding-bottom: 56.25%; background: #000;
    }
    .stut-modal-video iframe {
      position: absolute; inset: 0; width: 100%; height: 100%; border: none;
    }
    /* placeholder when no video */
    .stut-modal-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: linear-gradient(135deg, #0a1628, #0d2250);
      gap: .8rem;
    }
    .stut-modal-placeholder i { font-size: 3.5rem; color: rgba(255,255,255,.15); }
    .stut-modal-placeholder p { color: rgba(255,255,255,.4); font-size: .82rem; margin: 0; }

    .stut-modal-body { padding: 1.3rem 1.5rem 1.6rem; }
    .stut-modal-tag { font-size: .62rem; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; color: #5b9bd5; margin-bottom: .3rem; }
    .stut-modal-name { font-family: 'Nunito', sans-serif; font-weight: 900;
      font-size: 1.1rem; color: #fff; margin-bottom: .4rem; }
    .stut-modal-desc { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }

    .stut-modal-close {
      position: absolute; top: 12px; right: 12px; z-index: 10;
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2);
      color: #fff; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background .2s;
    }
    .stut-modal-close:hover { background: rgba(255,255,255,.22); }

    @media(max-width: 768px) {
      .stut-card { flex-direction: column; }
      .stut-right { flex: 0 0 220px; }
      .stut-carousel-wrap { padding: 0 2rem; }
      .stut-header h2 { font-size: 1.8rem; }
    }
	
	
	/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section{
  padding:4rem 0 5rem;
  background:linear-gradient(160deg,#eef2f7 0%,#e8edf5 100%);
}

/* ---- HEADER ---- */
.blog-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:2.5rem;flex-wrap:wrap;gap:1rem;
}
.blog-head-left{}
.blog-eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  background:rgba(0,71,171,.09);border:1px solid rgba(0,71,171,.18);
  color:#0047AB;border-radius:30px;
  font-size:.65rem;font-weight:800;
  letter-spacing:2px;text-transform:uppercase;
  padding:.28rem 1rem;margin-bottom:.7rem;
}
.blog-head h2{
  font-family:'Nunito',sans-serif;font-weight:900;
  font-size:2rem;color:#1a1a2e;margin:0;
}
.blog-head h2 span{color:#0047AB;}
.blog-head p{color:#888;font-size:.83rem;margin:.3rem 0 0;max-width:300px;line-height:1.6;}
.blog-all-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:#0047AB;color:#fff;
  font-family:'Nunito',sans-serif;font-weight:800;
  font-size:.82rem;border-radius:12px;
  padding:.75rem 1.8rem;text-decoration:none;
  transition:all .25s;
  box-shadow:0 4px 18px rgba(0,71,171,.25);
  flex-shrink:0;align-self:center;
}
.blog-all-btn:hover{
  background:#00307a;color:#fff;
  transform:translateY(-2px);
  box-shadow:0 8px 28px rgba(0,71,171,.35);
}

/* ---- LAYOUT: 3 cards + right sidebar ---- */
.blog-layout{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 280px;
  gap:18px;
  align-items:start;
}

/* ---- BLOG CARD ---- */
.blog-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  text-decoration:none;
  display:flex;flex-direction:column;
  border:1.5px solid #e5eaf3;
  transition:transform .35s cubic-bezier(.34,1.4,.64,1), box-shadow .3s, border-color .3s;
  position:relative;
}
.blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,40,120,.13);
  border-color:#0047AB;
}

/* top color stripe */
.blog-card::before{
  content:'';
  position:absolute;top:0;left:0;right:0;height:3px;
  background:var(--stripe,#0047AB);
  border-radius:20px 20px 0 0;
  transform:scaleX(0);transform-origin:left;
  transition:transform .35s ease;
}
.blog-card:hover::before{transform:scaleX(1);}

/* photo */
.blog-photo{
  width:100%;aspect-ratio:4/3;overflow:hidden;
  position:relative;flex-shrink:0;
}
.blog-photo img{
  width:100%;height:100%;object-fit:scale-down;object-position:top center;
  transition:transform .5s ease;
}
.blog-card:hover .blog-photo img{transform:scale(1.06);}

/* category badge on photo */
.blog-cat-badge{
  position:absolute;bottom:12px;left:12px;z-index:2;
  font-size:.58rem;font-weight:800;letter-spacing:1.5px;
  text-transform:uppercase;padding:.22rem .75rem;
  border-radius:6px;backdrop-filter:blur(8px);
}
.bcat-blue{background:rgba(0,71,171,.85);color:#fff;}
.bcat-green{background:rgba(0,162,100,.85);color:#fff;}
.bcat-purple{background:rgba(124,77,255,.85);color:#fff;}

/* body */
.blog-body{padding:1.3rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex:1;}

.blog-title{
  font-family:'Nunito',sans-serif;font-weight:900;
  font-size:.98rem;color:#1a1a2e;line-height:1.4;
  margin-bottom:.9rem;flex:1;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
  transition:color .2s;
}
.blog-card:hover .blog-title{color:#0047AB;}



/* read time chip */
.blog-rt{
  display:inline-flex;align-items:center;gap:4px;
  background:#f0f4ff;color:#0047AB;
  font-size:.6rem;font-weight:700;
  padding:.18rem .6rem;border-radius:20px;
  margin-bottom:.7rem;width:fit-content;
}

/* ---- RIGHT SIDEBAR ---- */
.blog-sidebar{
  display:flex;flex-direction:column;gap:0;
}

.blog-sidebar-box{
  background:#fff;
  border-radius:20px;
  padding:2rem 1.8rem 2rem;
  border:1.5px solid #e5eaf3;
  display:flex;flex-direction:column;
}

.sidebar-icon{
  width:52px;height:52px;border-radius:16px;
  background:linear-gradient(135deg,#0047AB,#2563eb);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;color:#fff;margin-bottom:1.2rem;
  box-shadow:0 6px 20px rgba(0,71,171,.25);
}
.sidebar-title{
  font-family:'Nunito',sans-serif;font-weight:900;
  font-size:1.3rem;color:#1a1a2e;margin-bottom:.5rem;
}
.sidebar-desc{
  font-size:.8rem;color:#888;line-height:1.7;margin-bottom:1.5rem;flex:1;
}
.sidebar-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:#0047AB;color:#fff;
  font-family:'Nunito',sans-serif;font-weight:800;
  font-size:.82rem;border-radius:12px;
  padding:.8rem 1.5rem;text-decoration:none;
  transition:all .25s;
  box-shadow:0 4px 16px rgba(0,71,171,.25);
  text-align:center;
}
.sidebar-btn:hover{background:#00307a;color:#fff;transform:translateY(-2px);}

/* small stat items in sidebar */
.sidebar-stats{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px;margin-top:1.5rem;
}
.sidebar-stat{
  background:#f5f7fc;border-radius:12px;
  padding:.75rem .9rem;text-align:center;
}
.sidebar-stat-num{
  font-family:'Nunito',sans-serif;font-weight:900;
  font-size:1.2rem;color:#0047AB;display:block;
}
.sidebar-stat-lbl{font-size:.58rem;color:#aaa;letter-spacing:.5px;text-transform:uppercase;}

@media(max-width:1200px){
  .blog-layout{grid-template-columns:1fr 1fr;grid-template-rows:auto auto;}
  .blog-sidebar{grid-column:1/3;flex-direction:row;gap:16px;}
  .blog-sidebar-box{flex:1;}
}
@media(max-width:767px){
  .blog-layout{grid-template-columns:1fr;}
  .blog-sidebar{grid-column:auto;flex-direction:column;}
  .blog-head{flex-direction:column;align-items:flex-start;}
}

.form-wrapper {
      background-color: #f8f9fa;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    .image-column {
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      background: url('https://panel.gelisim.edu.tr/assets/2022/resimler/igu_aday_2022/unnamed92_94ce181f4e4e41f29184de9717498f5d.jpg') right/cover;
    }
    .image-column::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    }
    .image-content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: center;
    }
    .image-content h2 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    .image-content p {
      font-size: 15px;
      opacity: 0.95;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    .university-logo {
      width: 100px;
      height: 100px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      border: 3px solid rgba(255,255,255,0.5);
      backdrop-filter: blur(5px);
    }
    .university-logo i {
      font-size: 3rem;
      color: white;
    }
    .feature-list {
      text-align: left;
      margin-top: 2rem;
      background: rgba(3 3 3 / 18%);
      backdrop-filter: blur(5px);
      padding: 1.5rem;
      border-radius: 15px;
      border: 1px solid rgba(255,255,255,0.2);
    }
    .feature-list li {
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .feature-list i {
      color: #ffc107;
      font-size: 1.2rem;
    }
    .form-column {
      padding: 2.5rem;
      background: white;
    }
    .form-title {
      color: #2c3e50;
      font-weight: 600;
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 12px;
    }
    .form-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #ffc107, #ff9800);
      border-radius: 2px;
    }
    .form-label {
      font-weight: 500;
      color: #495057;
      margin-bottom: 5px;
      font-size: 0.95rem;
    }
    .form-control, .form-select {
      border: 1px solid #dee2e6;
      border-radius: 10px;
      padding: 10px 15px;
      transition: all 0.3s;
      font-size: 0.95rem;
    }
    .form-control:focus, .form-select:focus {
      border-color: #ffc107;
      box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    }
    .input-group-text {
      background-color: white;
      border-right: none;
      border-radius: 10px 0 0 10px;
    }
    .input-group .form-control {
      border-left: none;
      border-radius: 0 10px 10px 0;
    }
    .consent-text {
      font-size: 0.85rem;
      color: #6c757d;
      line-height: 1.5;
    }
    .consent-text strong {
      color: #2c3e50;
    }
    .btn-submit {
      background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
      border: none;
      border-radius: 10px;
      padding: 12px 30px;
      font-weight: 600;
      font-size: 1rem;
      color: #2c3e50;
      transition: all 0.3s;
      width: 100%;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
      color: #000;
    }
    .communication-option {
      background-color: #f8f9fa;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      padding: 8px 15px;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 0.9rem;
    }
    .communication-option:hover {
      background-color: #fff9e6;
      border-color: #ffc107;
    }
    .communication-option input[type="checkbox"] {
      margin-right: 6px;
    }

 .footer-link {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.2s;
      display: inline-block;
      padding: 0.25rem 0;
    }
    .footer-link:hover {
      color: white;
      text-decoration: underline;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.75rem;
    }
    .contact-item i {
      width: 24px;
      font-size: 1.1rem;
    }
    .footer-title {
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.5rem;
    }
    .footer-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 2px;
      background-color: #ffc107; /* Sarı alt çizgi */
    }

    /* WHATSAPP  */
    .wa-float {
    position: fixed !important;
    right: -10px !important;
    bottom: 20px !important;
    left: auto !important;
    top: auto !important;
    z-index: 99999 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
  }

  /* Tooltip label */
  .wa-label {
    background: #1a1a1a;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: all .25s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  .wa-float:hover .wa-label {
    opacity: 1;
    transform: translateY(0);
  }

  /* Button */
  .wa-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: transform .25s, box-shadow .25s;
    position: relative;
  }
  .wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,.6);
  }
  .wa-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    position: relative;
    z-index: 2;
  }

  /* Pulse rings */
  .wa-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,.35);
    animation: waPulse 2.2s ease-out infinite;
    z-index: 1;
  }
  .wa-pulse-ring:nth-child(2) { animation-delay: .7s; }
  .wa-pulse-ring:nth-child(3) { animation-delay: 1.4s; }

  @keyframes waPulse {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(2.2); opacity: 0;  }
  }

  /* Notification dot */
  .wa-notif {
    position: absolute;
    top: 2px; right: 2px;
    width: 14px; height: 14px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 3;
    animation: waBounce 1.8s ease-in-out infinite;
  }
  @keyframes waBounce {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.25); }
  }

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

@media (max-width:768px){
    .photo-slide .mobile-only{
        display:block;
        object-fit:fill;
    }
}

/* FlipBook ana container */
.online__universite__container__content__boxseffaf .flipbook-main-wrapper {
    width: 100% !important;
    height: 600px !important;
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
}

    /* Bootstrap img-fluid çakışması */
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper img,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper canvas {
        max-width: none !important;
        vertical-align: initial !important;
    }

    /* SVG ikonlar */
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper svg {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        max-width: none !important;
    }

    /* Font Awesome ikonlar */
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper i,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .fa,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .fas,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .far,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .fab,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .fa-solid,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .fa-regular,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper .fa-brands {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Bootstrap form resetlerinin etkisini azalt */
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper button,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper input,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper select,
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper textarea {
        font: inherit;
    }

/* Mobil */
@media (max-width:768px) {
    .online__universite__container__content__boxseffaf .flipbook-main-wrapper {
        height: 520px !important;
    }
}

.online__universite__container__content__boxseffaf .flipbook-main-wrapper {
    margin-bottom:20px !important;
}

.online__universite__container__content__boxseffaf{
	margin-bottom:50px !important;
}