/* ================= BASE ================= */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.custom-container {
    max-width: 1628px;
}

/* ================= HEADER ================= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 22, 45, 0.15);
    z-index: 100;
}

/* ---------- TOP BAR ---------- */


.lang {
    color: #fff;
    font-size: 12px;
}

.slogan {
    font-family: 'Courgette', cursive;
    font-size: 16px;
    color: #fff;
}

/* Info */
.info-item {
    color: #d7d7d7;
    font-size: 14px;
    font-weight: 500;
}


.info-item span {
    padding-left: 8px;
    padding-right: 18px;
}

.info-item i {
    font-size: 15px;
}

/* Dikey Çizgi */
.divider-vertical {
    width: 2px;
    height: 47px;
    background: #efefef;
    opacity: 7%;
}

/* ---------- LINES ---------- */
.header-line {
    height: 1px;
    background: rgba(255,255,255,0.3);
}

/* ---------- MAIN HEADER ---------- */
.header-main {
    padding: 18px 0;
}

.site-logo {
    height: 56px;
}

/* ---------- MENU ---------- */
.main-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.btn-randevu {
    background: #22c1c3;
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff !important;
    font-weight: 600;
}



/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .slogan {
        font-size: 14px;
    }

}




/* ================= MOBILE OFFCANVAS ================= */
.mobile-menu {
    background: #0d162d;
    color: #fff;
}

.mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}









/* ================= SLIDER ================= */
.hero-slider {
    background: #314ecf;
    min-height: 720px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1; /* header altı */
     padding-top: 150px;
}

/* METİN */
.hero-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;          /* SemiBold */
    font-size: 48px;           /* PSD */
    line-height: 60px;         /* PSD */
    letter-spacing: -0.05em;    /* PSD */
    color: #ffffff;
    max-width: 495px;          /* satır kırılımı BURADAN */
    margin-bottom: 30px;
}

/* BUTON */
.hero-btn {
    display: inline-block;
    border: 2px solid #ffffff;
    border-radius: 5px;
    padding: 10px 24px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all .25s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #314ecf;
}

/* GÖRSEL */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-height: 640px;
    width: auto;
    display: block;
    margin-left: auto;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .hero-slider {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero-text {
        font-size: 32px;
        line-height: 42px;
        max-width: 100%;
        text-align: center;
    }

    .hero-btn {
        display: inline-block;
        margin: 0 auto;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }

    .hero-image img {
        max-height: 420px;
        margin: 0 auto;
    }
}






/* ================= SERVICE CARDS ================= */
.service-cards-section {
    position: relative;
    margin-top: -140px;        /* slider üzerine binme */
    padding-bottom: 80px;
    overflow: hidden;          /* ekran dışını gizle */
    z-index: 5;
}

/* Wrapper */
.cards-wrapper {
    display: flex;
    gap: 37px;
}

/* Card */
.service-card {
    position: relative;
    flex: 0 0 464px;           /* 3 kart + 4.’ün yarısı görünür */
    height: 620px;
    border-radius: 20px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay (yazı okunurluğu) */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 57px;
    
}

/* Subtitle */
.card-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;   /* PSD letter 50 */
    color: #606895;
    margin-bottom: 8px;
}

/* Title */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;         /* SemiBold */
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.025em; /* PSD -25 */
    color: #272a68;
    margin: 0;
}

.card-title span {
    display: block;           /* 🔥 SATIR KONTROLÜ */
}

/* Card Arrow Button */
.card-arrow {
    position: absolute;
    bottom: 29px;          /* resme yakın */
    right: 29px;           /* 🔥 sağdan 29px */
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.card-arrow i {
    font-size: 14px;
    color: #000000;        /* siyah ok */
}











/* Arrow base */
.card-arrow {
    overflow: hidden; /* ikon taşmasını gizle */
    transition: background-color 0.3s ease;
}

/* Icon base state */
.card-arrow i {
    transition: 
        transform 0.35s ease,
        opacity 0.2s ease,
        color 0.3s ease;
}

/* Hover state */
.service-card:hover .card-arrow {
    background-color: #314ecf;
}

/* Hover animation */
.service-card:hover .card-arrow i {
    color: #ffffff;
    transform: translateX(18px);
    opacity: 0;
}

/* Arrow button base */
.card-arrow {
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* Asıl ikon */
.card-arrow i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 
        transform 0.35s ease,
        opacity 0.2s ease,
        color 0.3s ease;
}

/* Hover'da buton rengi */
.service-card:hover .card-arrow {
    background-color: #314ecf;
}

/* Hover: mevcut ikon sağa kayıp kaybolur */
.service-card:hover .card-arrow i {
    color: #ffffff;
    transform: translate(120%, -50%);
    opacity: 0;
}

/* Yeni ikon (soldan merkeze gelir) */
.card-arrow::before {
    content: "\f138"; /* bi-arrow-right */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-180%, -50%);
    font-size: 14px;
    color: #ffffff;
    opacity: 0;
    transition: 
        transform 0.35s ease,
        opacity 0.2s ease;
}

/* Hover: yeni ikon merkeze gelir */
.service-card:hover .card-arrow::before {
    transform: translate(-50%, -50%);
    opacity: 1;
}


/* Keyframes */
@keyframes arrowIn {
    from {
        transform: translateX(-18px);
        opacity: 0;
    }
    to {
        transform: translateX(18px);
        opacity: 1;
    }
}



/* Background color cycle */
.bg-1 { background-color: #95c1e7; }
.bg-2 { background-color: #e7d6ee; }
.bg-3 { background-color: #fbe2bf; }
.bg-4 { background-color: #a2c8c4; }

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .service-cards-section {
        margin-top: -120px;
    }

    .cards-wrapper {
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .service-card {
        flex: 0 0 320px;
        height: 520px;
    }
}


/* ================= CARDS NAV ================= */
.cards-nav {
    position: absolute;
    right: 128px;
    top: 261px;
    display: flex;
    gap: 14px;
    z-index: 10;
}



/* Base button */
.cards-nav-btn {
    position: relative;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    cursor: pointer;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: background-color 0.3s ease;
}

/* Icon base (centered) */
.cards-nav-btn i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #000000;

    transition:
        transform 0.35s ease,
        opacity 0.2s ease,
        color 0.3s ease;
}

/* Hover bg */
.cards-nav-btn:hover {
    background-color: #314ecf;
}

/* Hover → mevcut ikon kaybolur */
.cards-nav-btn:hover i {
    color: #ffffff;
    opacity: 0;
}

/* Yeni ikon (soldan merkeze) */
.cards-nav-btn::before {
    content: "";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-180%, -50%);
    font-size: 18px;
    color: #ffffff;
    opacity: 0;

    transition:
        transform 0.35s ease,
        opacity 0.2s ease;
}

/* Prev icon */
.cards-nav-btn.prev::before {
    content: "\f12f"; /* bi-arrow-left */
}

/* Next icon */
.cards-nav-btn.next::before {
    content: "\f138"; /* bi-arrow-right */
}

/* Hover → yeni ikon merkeze gelir */
.cards-nav-btn:hover::before {
    transform: translate(-50%, -50%);
    opacity: 1;
}





/* ================= PAIN INFO SECTION ================= */
.pain-info-section {
  padding: 35px 0;
  background: #ffffff;
}

/* SOL METİN */
.pain-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.05em;
  color: #2c2f7a;
  max-width: 420px;
  margin-bottom: 24px;
}

.pain-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #5c5c5c;
  max-width: 460px;
  margin-bottom: 16px;
}

.pain-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 22px;
  background: #2c2f7a;
  color: #ffffff;
  font-size: 13px;
  border-radius: 4px;
  text-decoration: none;
}

/* SAĞ GRID */
.pain-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding-left: 40px;
}

/* KART */
.pain-card {
  position: relative;
  border-radius: 12px;
  padding: 28px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Alt renk şeridi */
.pain-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 14px;
}


.pain-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #2c2f7a;
  margin: 0;
}

.pain-card span {
  font-size: 16px;
  color: #2c2f7a;
}

/* RENKLER */
.pain-card.pink {
  background: #fafafa;
}
.pain-card.pink::after {
  background: #d89fbb;
}

.pain-card.gray {
  background: #dfdfdf;
}
.pain-card.gray::after {
  background: #f6f6f6;
}

.pain-card.blue {
  background: #5ca7e1;
}
.pain-card.blue::after {
  background: #4e92c6;
}


.pain-card.orange {
  background: #e7cdac;
}
.pain-card.orange::after {
  background: #d9b486;
}



/* MOBILE */
@media (max-width: 991px) {
  .pain-cards-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
    margin-top: 40px;
  }

  .pain-title {
    font-size: 36px;
    line-height: 42px;
  }
}




.videos-wrapper {
  overflow: visible;
}

.videos-wrapper .swiper-slide {
  width: auto !important; /* col-lg belirlesin */
}

.video-card {
  margin-right: 32px;
}

.video-thumb {
  border-radius: 20px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.4s ease;
}

.video-card:hover img {
  filter: grayscale(0%);
}

.video-title {
  margin-top: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.025em;
  color: #282b69;
}



/* ================= VIDEOS NAV ================= */
.videos-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

/* Base button */
.videos-nav-btn {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

/* Icon base (centered) */
.videos-nav-btn i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #000000;

  transition:
    transform 0.35s ease,
    opacity 0.2s ease,
    color 0.3s ease;
}

/* Hover bg */
.videos-nav-btn:hover {
  background-color: #314ecf;
}

/* Hover → mevcut ikon kaybolur */
.videos-nav-btn:hover i {
  color: #ffffff;
  opacity: 0;
}

/* Yeni ikon (soldan merkeze gelir) */
.videos-nav-btn::before {
  font-family: "bootstrap-icons";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-180%, -50%);
  font-size: 18px;
  color: #ffffff;
  opacity: 0;

  transition:
    transform 0.35s ease,
    opacity 0.2s ease;
}

/* Prev */
.videos-nav-btn.prev::before {
  content: "\f12f"; /* bi-arrow-left */
}

/* Next */
.videos-nav-btn.next::before {
  content: "\f138"; /* bi-arrow-right */
}

/* Hover → yeni ikon merkeze gelir */
.videos-nav-btn:hover::before {
  transform: translate(-50%, -50%);
  opacity: 1;
}


.videos-section {
    overflow: visible;
    padding: 100px 0;
}

.videos-head span {
    color: #282b69;
    font-weight: 500;
}









   /* ================= CTA TECH SECTION ================= */
.cta-tech-section {
  padding: 20px 0;
}

.cta-tech-box {
  background: linear-gradient(
    135deg,
    #a2c1f6 0%,
    #adf4eb 100%
  );
  background-color: #4479be;
  border-radius: 20px;
  padding: 70px 40px;
}

/* Başlıklar */
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 6px;
}

.cta-subtitle {
  font-family: 'Courgette', cursive;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 32px;
}

/* Buton Alanı */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Ortak buton */
.cta-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: all .25s ease;
  
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn i {
  font-size: 21px;
  line-height: 1;
}

.cta-btn.primary i {
  color: #ffffff;
}

.cta-btn.dark i {
  color: #ffffff;
}

.cta-btn.light i {
  color: #282b69;
}

/* ONLINE RANDEVU */
.cta-btn.primary {
  background: #4479be;
  color: #ffffff;
}

/* HEMEN ARA */
.cta-btn.dark {
  background: #363a88;
  color: #ffffff;
}

/* BİZ SİZİ ARAYALIM */
.cta-btn.light {
  background: #efefef;
  color: #282b69;
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {
  .cta-tech-box {
    padding: 50px 24px;
  }

  .cta-title,
  .cta-subtitle {
    font-size: 28px;
  }
}




.site-footer {
  background: #f0f3f6;
  padding: 60px 0 30px;
  font-family: 'Montserrat', sans-serif;
}

/* Başlıklar */
.footer-title {
  font-weight: 600;
  font-size: 16px;
  color: #4479be;
  margin-bottom: 16px;
}

/* Linkler */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #4a4a4a;
  text-decoration: none;
}

.footer-links a:hover {
  color: #4479be;
}

/* Çağrı merkezi */
.footer-call {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-call i {
  font-size: 28px;
  color: #4479be;
}

.footer-call strong {
  display: block;
  font-size: 15px;
  color: #000;
}

/* Dikey çizgi */
.footer-divider {
  width: 1px;
  background: #64a6d3;
  height: 100%;
}

/* Sosyal */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: #4479be;
  font-size: 16px;
}

/* Adres */
.footer-address {
  font-size: 13px;
  line-height: 20px;
  color: #4a4a4a;
}

/* Alt bar */
.footer-bottom {
  margin-top: 40px;
  font-size: 12px;
  color: #6c6c6c;
}










