/* Main menu: red underline bar (animated) a bit lower */
.main-menu ul li{ position: relative; }
.main-menu ul li a{
  position: relative;
  text-decoration: none;
}
.main-menu ul li a:after{
  content: "";
  position: absolute;
  left: 8px; right: 8px; bottom: 2px; /* closer to text for visibility */
  height: 2px; border-radius: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.main-menu ul li a:hover{
  color: var(--color-secondary) !important;
}
.main-menu ul li a:hover:after{ transform: scaleX(1); }
:root{
  --color-primary:#04486a; --color-primary-dark:#033854; --color-primary-light:#0a5f8a; --color-primary-xlight:#5a98b1;
  --color-secondary:#d51e2a; --color-secondary-dark:#b11922; --color-secondary-light:#e04750; --color-secondary-xlight:#ea6a73;
  --color-accent:#fbf1de; --color-accent-dark:#e9dec8; --color-accent-light:#fff8ec;
  --text-main:#0f2239; --text-muted:#4a5568; --border:#e5e7eb; --bg:#ffffff; --bg-muted:#f7f8fa;

  /* Map theme CSS vars to our palette to ensure global consistency */
  --theme-color: var(--color-primary);
  --theme-color2: var(--color-secondary);
  --title-color: var(--text-main);
  --body-color: #ffffff;
  --white-color: #ffffff;

  /* Footer palette derived from brand colors */
  --footer-bg:#033854; /* deep primary */
  --footer-card-bg:rgba(4,72,106,0.92); /* primary with transparency */
  --footer-title:var(--color-accent-light);
  --footer-text:#e6eef3;
  --footer-link:#ffffff;
  --footer-link-hover:var(--color-secondary);
  --footer-divider:rgba(255,255,255,0.12);
}

/* Links */
a{ color: var(--color-primary); }
a:hover{ color: var(--color-primary-dark); }

/* Buttons */
.th-btn{ background-color: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.th-btn:hover{ background-color: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; }

/* Secondary Buttons / CTA */
.th-btn.secondary{ background-color: var(--color-secondary); border-color: var(--color-secondary); color:#fff; }
.th-btn.secondary:hover{ background-color: var(--color-secondary-dark); border-color: var(--color-secondary-dark); color:#fff; }
.btn-outline-secondary{ background: transparent; border:1px solid var(--color-secondary); color: var(--color-secondary); }
.btn-outline-secondary:hover{ background: var(--color-secondary); color:#fff; }

/* Utility classes */
.text-secondary{ color: var(--color-secondary) !important; }
.bg-accent{ background-color: var(--color-accent) !important; }
.border-secondary{ border-color: var(--color-secondary) !important; }

/* Links hover with secondary accent */
.link-accent:hover{ color: var(--color-secondary) !important; }

/* Contact Page Specific Styles */
.breadcumb-title{ color: var(--color-primary) !important; }
.border-title{ color: var(--color-primary) !important; }
.sub-title{ color: var(--color-secondary) !important; }
.contact-feature-icon{ background-color: var(--color-primary); color: #fff; }
.contact-feature_label{ color: var(--color-primary); }
.contact-feature_link{ color: var(--color-primary); }
.contact-feature_link:hover{ color: var(--color-secondary) !important; }
.contact-form-wrap{ background-color: var(--color-accent) !important; }
.contact-form-wrap .border-title{ color: var(--color-primary) !important; }
.contact-form-wrap .sub-title{ color: var(--color-secondary) !important; }
.contact-form-wrap .sec-text{ color: var(--text-muted) !important; }
.contact-form .th-btn{ background-color: var(--color-secondary); border-color: var(--color-secondary); }
.contact-form .th-btn:hover{ background-color: var(--color-secondary-dark); border-color: var(--color-secondary-dark); }

/* Location card button - same color as contact form */
.location-info-card .th-btn{ background-color: var(--color-secondary); border-color: var(--color-secondary); }
.location-info-card .th-btn:hover{ background-color: var(--color-secondary-dark); border-color: var(--color-secondary-dark); }

/* Fix spacing issues between map and contact form */
.map-sec{ margin-bottom: 60px !important; }
#contact-sec .row{ margin-top: 0 !important; }
.contact-form-wrap{ margin-top: 30px !important; }
.map{ border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }

/* Fix form input text visibility */
.contact-form .form-control{ 
    color: var(--text-main) !important; 
    background-color: rgba(255,255,255,0.9) !important;
    border: 1px solid var(--border) !important;
}
.contact-form .form-control::placeholder{ 
    color: var(--text-muted) !important; 
    opacity: 0.8;
}
.contact-form .form-control:focus{ 
    background-color: #ffffff !important; 
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(4, 72, 106, 0.25);
}
.contact-form .nice-select{ 
    color: var(--text-main) !important; 
    background-color: rgba(255,255,255,0.9) !important;
}
.contact-form .form-control:focus{ 
    background-color: #ffffff !important; 
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 0.2rem rgba(4, 72, 106, 0.25);
}

/* Blog Page Specific Styles - Fix Color Contrast Issues */
.blog-single .blog-title a{ 
    color: var(--text-main) !important; 
}
.blog-single .blog-title a:hover{ 
    color: var(--color-primary) !important; 
}
.blog-single .blog-text{ 
    color: var(--text-muted) !important; 
}

/* Fix Text Readability Issues - Metin Okunabilirlik Sorunlarını Düzelt */
.hero-text {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
    font-weight: 500 !important;
}

.hero-subtitle {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
    font-weight: 600 !important;
}

.hero-subtitle span {
    color: var(--color-accent-light) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
}

.sub-title {
    color: var(--color-secondary) !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.sec-title {
    color: var(--text-main) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

.category-card_title {
    color: var(--text-main) !important;
    font-weight: 600 !important;
}

.category-card_title a {
    color: var(--text-main) !important;
}

.category-card_title a:hover {
    color: var(--color-primary) !important;
}

.category-card_text {
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}

/* About section text readability */
#about-sec p {
    color: var(--text-main) !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

#about-sec .checklist li {
    color: var(--text-main) !important;
    font-weight: 500 !important;
}

/* Placement test section */
#placement-cta p {
    color: var(--text-main) !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

/* General text improvements */
p {
    color: var(--text-main) !important;
    font-weight: 400 !important;
}

.text-muted {
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}

/* Text shadow utility class for better readability */
.text-shadow-dark {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8) !important;
}

/* Additional contrast improvements for specific sections */
.hero-style1 .hero-text,
.hero-style1 .hero-subtitle {
    text-shadow: 0 2px 4px rgba(0,0,0,0.9) !important;
}

.hero-style1 .hero-title {
    text-shadow: 0 3px 6px rgba(0,0,0,0.9) !important;
}
.blog-single .blog-meta a,
.blog-single .blog-meta span{ 
    color: #000000 !important; 
}

/* Blog detay sayfası için özel renk */
.blog-detail-section .blog-meta span {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8) !important;
}

/* Yazar ismi için özel vurgu */
.blog-detail-section .blog-meta span:first-child {
    color: #04486a !important;
    font-weight: 800 !important;
}
.blog-single .blog-meta a:hover{ 
    color: var(--color-primary) !important; 
}
.blog-single .link-btn{ 
    color: var(--color-primary) !important; 
}
.blog-single .link-btn:hover{ 
    color: var(--color-primary-dark) !important; 
}

/* Blog Breadcrumb Fixes */
.breadcumb-wrapper .breadcumb-title {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}
.breadcumb-wrapper .breadcumb-menu li a {
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}
.breadcumb-wrapper .breadcumb-menu li a:hover {
    color: var(--color-accent) !important;
}
.breadcumb-wrapper .breadcumb-menu li:last-child {
    color: var(--color-accent) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
}

/* Sidebar Widget Styles */
.sidebar-area .widget_title{ 
    color: var(--text-main) !important; 
    background-color: var(--color-accent) !important;
    padding: 15px 20px !important;
    border-radius: 8px 8px 0 0 !important;
    margin-bottom: 0 !important;
}
.sidebar-area .widget{ 
    background-color: #ffffff !important; 
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
    overflow: hidden !important;
}
.sidebar-area .widget_search .search-form input{ 
    color: var(--text-main) !important; 
    background-color: #ffffff !important;
    border: 1px solid var(--border) !important;
}
.sidebar-area .widget_search .search-form input::placeholder{ 
    color: var(--text-muted) !important; 
}
.sidebar-area .widget_categories ul li a{ 
    color: var(--text-main) !important; 
    background-color: #ffffff !important;
    padding: 12px 20px !important;
    display: block !important;
    border-bottom: 1px solid var(--border) !important;
}
.sidebar-area .widget_categories ul li a:hover{ 
    color: var(--color-primary) !important; 
    background-color: var(--color-accent) !important;
}
.sidebar-area .widget_categories ul li:last-child a{ 
    border-bottom: none !important;
}
.sidebar-area .recent-post .post-title a{ 
    color: var(--text-main) !important; 
}
.sidebar-area .recent-post .post-title a:hover{ 
    color: var(--color-primary) !important; 
}
.sidebar-area .recent-post-meta a{ 
    color: var(--text-muted) !important; 
}
.sidebar-area .tagcloud a{ 
    color: var(--text-main) !important; 
    background-color: var(--color-accent) !important;
    border: 1px solid var(--border) !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    display: inline-block !important;
    margin: 5px !important;
}
.sidebar-area .tagcloud a:hover{ 
    color: #ffffff !important; 
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* Override for Course Detail sidebar "Kurs Bilgileri" title */
.sidebar-area .widget.widget_info .widget_title{
  background-color: #04486a !important;
  color: #ffffff !important;
}

/* Sadece "Uzman ekibimiz" yazısı için beyaz renk */
.cta-widget .expert-text {
  color: #ffffff !important;
}

/* Blog paylaş ikonları için hover efektleri */
.blog-share a:hover {
    transform: scale(1.2) !important;
    transition: transform 0.3s ease !important;
}

.blog-share a:hover i.fab.fa-instagram {
    color: #E4405F !important;
}

.blog-share a:hover i.fas.fa-share-alt {
    color: #28a745 !important;
}

/* Course Detail Tabs Visibility Improvements */
.course-single-bottom .course-tab .nav-link{
  background: #f0f4f8 !important;
  color: #033854 !important;
  border: 1px solid rgba(4, 72, 106, 0.2) !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  margin-right: 8px !important;
  font-weight: 600 !important;
}
.course-single-bottom .course-tab .nav-link:hover{
  background: #e3eef5 !important;
  color: #033854 !important;
}
.course-single-bottom .course-tab .nav-link.active{
  background: #04486a !important;
  color: #ffffff !important;
  border-color: #04486a !important;
  box-shadow: 0 6px 16px rgba(4, 72, 106, 0.2) !important;
}

/* Widget Banner Fixes */
.widget_banner .widget-banner{ 
    padding: 30px 20px !important;
    text-align: center !important;
}
.widget_banner .title{ 
    color: var(--text-main) !important; 
    font-size: 18px !important;
    margin-bottom: 15px !important;
}
.widget_banner .subtitle{ 
    color: var(--text-muted) !important; 
    font-size: 14px !important;
    margin-bottom: 15px !important;
}
.widget_banner .link{ 
    color: var(--color-primary) !important; 
    font-size: 18px !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 15px !important;
}
.widget_banner .th-btn{ 
    background-color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
}
.widget_banner .th-btn:hover{ 
    background-color: var(--color-secondary-dark) !important;
    border-color: var(--color-secondary-dark) !important;
}

/* Widget Banner Overlay Fix */
.widget_banner[data-overlay="theme"]::before {
    background-color: var(--color-accent) !important;
    opacity: 0.95 !important;
}
.widget_banner[data-overlay="theme"] .widget-banner {
    position: relative !important;
    z-index: 2 !important;
}

/* Pagination Fixes */
.th-pagination ul li a{ 
    color: var(--text-main) !important; 
    background-color: #ffffff !important;
    border: 1px solid var(--border) !important;
    padding: 10px 15px !important;
    border-radius: 5px !important;
    margin: 0 5px !important;
}
.th-pagination ul li a:hover{ 
    color: #ffffff !important; 
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}
.th-pagination ul li a.active{ 
    color: #ffffff !important; 
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

/* Reduce spacing between contact feature cards */
.contact-feature{ margin-bottom: 20px !important; }
.contact-feature:first-child{ margin-top: 0 !important; }
.contact-feature:last-child{ margin-bottom: 0 !important; }
.contact-feature-icon{ 
    margin-right: 15px !important; 
    width: 45px !important; 
    height: 45px !important; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important;
}
.contact-feature .media-body{ padding-top: 2px; }

/* Reduce spacing between title and contact features */
.title-area{ margin-bottom: 0 !important; }
.title-area .border-title{ 
    margin-bottom: 0 !important; 
    border-bottom: none !important; 
    padding-bottom: 0 !important;
}

/* Accents */
.badge, .tag, .accent-bg{ background-color: var(--color-accent); color: var(--text-main); }

/* Header/Footer highlights (non-invasive) */
.header-layout1 .header-top{ background-color: #04486a; }
.header-layout1 .header-top:after{ background: #04486a !important; }
.header-layout1 .header-top a,
.header-layout1 .header-top li,
.header-layout1 .header-top p,
.header-layout1 .header-top span,
.header-layout1 .header-top i{ color: #ffffff !important; }

/* Social icons: no hover effects */
.header-layout1 .header-top .header-social a{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius: 6px;
  position: relative;
  transition: transform .18s ease;
  transform-origin: center;
}
.header-layout1 .header-top .header-social a i{ color: #ffffff; }
/* Topbar social: revert to scale hover, hide underline */
.header-layout1 .header-top .header-social a:after{ display: none !important; }
.header-layout1 .header-top .header-social a:hover{ transform: scale(1.12); }
.footer-layout1 .footer-top{ background-color: var(--color-primary); }
.footer-layout1 .widget_title{ color: var(--color-accent-light); }

/* Footer - brand palette application */
.footer-layout1.footer-wrapper{ background-color: var(--footer-bg); }
.footer-layout1{ --footer-link-size: 0.95rem; }
.footer-layout1 .footer-wrap{ 
  background-color: var(--footer-card-bg);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.footer-layout1, .footer-layout1 p, .footer-layout1 .about-text{ color: var(--footer-text); }
.footer-layout1 .widget_title{ color: var(--footer-title) !important; }
.footer-layout1 .widget_title{ position: relative; padding-bottom: 8px; }
.footer-layout1 .widget_title:after{ content:""; position:absolute; left:0; bottom:0; width:46px; height:2px; background: currentColor; border-radius: 2px; opacity: .9; }
.footer-layout1 a{ color: var(--footer-link); }
.footer-layout1 a:hover{ color: var(--footer-link-hover); }
.footer-layout1 .th-social a{ 
  display:inline-flex; width:40px; height:40px; align-items:center; justify-content:center; 
  border-radius:50%; background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.footer-layout1 .th-social a i{ color: var(--footer-link); opacity: .9; transition: color .18s ease, opacity .18s ease; font-size: 14px; }
.footer-layout1 .th-social a:hover{ transform: translateY(-2px) scale(1.05); box-shadow: 0 6px 16px rgba(0,0,0,0.18); }
.footer-layout1 .th-social a:hover i{ opacity: 1; color: #ffffff; }

/* Brand hover colors */
.footer-layout1 .th-social a[href*="facebook"]{ --brand:#1877F2; }
.footer-layout1 .th-social a[href*="twitter"],
.footer-layout1 .th-social a[href*="x.com"]{ --brand:#1D9BF0; }
.footer-layout1 .th-social a[href*="tiktok"]{ --brand:#010101; }
.footer-layout1 .th-social a[href*="youtube"]{ --brand:#FF0000; }
.footer-layout1 .th-social a[href*="instagram"]{ --brand:#E4405F; }
.footer-layout1 .th-social a:hover{ background: var(--brand, rgba(255,255,255,0.16)); border-color: var(--brand, rgba(255,255,255,0.24)); }
/* WhatsApp brand color */
.footer-layout1 .th-social a[href*="whatsapp"]{ --brand:#25D366; }
.footer-layout1 .divider{ background-color: var(--footer-divider); height: 1px; opacity: 1; }
.footer-layout1 .footer-links a{ color: var(--footer-link); opacity: .9; }
.footer-layout1 .footer-links a:hover{ opacity: 1; color: var(--footer-link-hover); }
.footer-layout1 .footer-contact_list, 
.footer-layout1 .footer-contact-list{ color: var(--footer-text); }
.footer-layout1 .footer-contact-list, 
.footer-layout1 .footer-contact-list a, 
.footer-layout1 .footer-contact-list span{ font-size: var(--footer-link-size); line-height: 1.6; }
.footer-layout1 .footer-contact_link{ color: var(--footer-link); }
.footer-layout1 .footer-contact_link:hover{ color: var(--footer-link-hover); }

/* Footer logo card to ensure contrast on dark background */
.footer-layout1 .th-widget-about .about-logo{ 
  background: rgba(255,255,255,0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Footer "Dil Kursları" list hover interactions */
.footer-layout1 .footer-courses .menu li a,
.footer-layout1 .footer-company .menu li a{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: none; /* no hover animations */
  text-decoration: none;
  font-size: var(--footer-link-size);
}
.footer-layout1 .footer-courses .menu li a:before,
.footer-layout1 .footer-company .menu li a:before{
  content: "›"; /* Unicode arrow, no FA dependency */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 0.95em; /* match text size proportionally */
  line-height: 1;
  font-weight: 700;
  opacity: .8;
  transition: none; /* no hover animations */
  margin-right: 1px !important; /* ensure +1px spacing regardless of gap support */
}
.footer-layout1 .th-widget-about .about-logo img{
  max-height: 63px;
  width: auto;
  display: block;
}

/* Generic text colors */
body{ color: var(--text-main); background: var(--bg); }
.text-primary{ color: var(--color-primary) !important; }
.bg-primary{ background-color: var(--color-primary) !important; }
.bg-secondary{ background-color: var(--color-secondary) !important; }
.border-color{ border-color: var(--border) !important; }

/* FX Footer (minimal shell) */
.fx-footer{ background: transparent; color: inherit; padding: 0; margin: 0; }

/* Red empty footer */
.fx-footer--red{ background: #d51e2a; min-height: 80px; }

/* Footer container - align to top */
.fx-footer__inner{ display:flex; align-items:flex-start; justify-content:flex-start; padding: 32px 16px; gap: 24px; }
.fx-footer__leftLogo{ margin-left: 40px; }
.fx-footer__leftLogo img{ max-height: 336px; width: auto; display:block; }

/* Footer pages */
.fx-footer__pages{ margin-left: 32px; }
.fx-footer__pagesTitle{ color:#fff; margin: 0 0 6px; font-weight:700; font-size: .95rem; }
.fx-footer__pagesList{ list-style:none; padding:0; margin:0; display:flex; flex-direction: column; gap:8px; }
.fx-footer__pagesList li{ line-height: 1.4; }
.fx-footer__pagesList a{ color:#fff; text-decoration:none; opacity:.9; display:block; }
.fx-footer__pagesList a:hover{ opacity:1; text-decoration: underline; }

/* Footer courses */
.fx-footer__courses{ margin-left: 32px; }
.fx-footer__coursesTitle{ color:#fff; margin: 0 0 6px; font-weight:700; font-size: .95rem; }
.fx-footer__coursesList{ list-style:none; padding:0; margin:0; display:flex; flex-direction: column; gap:8px; }
.fx-footer__coursesList li{ line-height: 1.4; }
.fx-footer__coursesList a{ color:#fff; text-decoration:none; opacity:.9; display:block; }
.fx-footer__coursesList a:hover{ opacity:1; text-decoration: underline; }

/* Footer mini contact */
.fx-footer__contactMini{ margin-left: 32px; }
.fx-footer__contactMiniTitle{ color:#fff; margin:0 0 6px; font-weight:700; font-size:.95rem; }
.fx-footer__contactMiniList{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px; color:#fff; }
.fx-footer__contactMiniList a{ color:#fff; text-decoration:none; opacity:.9; }
.fx-footer__contactMiniList a:hover{ opacity:1; text-decoration: underline; }
.fx-footer__contactMiniList span{ opacity:.9; margin-right:6px; }

/* Layout adjustments */
.fx-footer__inner{ gap: 24px; }

/* Responsive - revert simple stacking */
@media(max-width: 991px){
  .fx-footer__inner{ flex-wrap: wrap; }
}
@media(max-width: 575px){
  .fx-footer__pages, .fx-footer__courses, .fx-footer__contactMini{ margin-left: 0; }
}

/* Phone & Email links - Global grow on hover */
a[href^="tel:"],
a[href^="mailto:"]{
  text-decoration: none;
  display: inline-block;
  transition: transform .18s ease;
}
a[href^="tel:"]:hover,
a[href^="mailto:"]:hover{
  transform: scale(1.12);
}

/* Header top bar: keep base white, soften on hover */
.header-layout1 .header-top .header-links a[href^="tel:"],
.header-layout1 .header-top .header-links a[href^="mailto:"],
.header-layout1 .header-top .header-links a{
  color: #ffffff !important;
  text-decoration: none;
  position: relative;
}
/* Topbar links: red underline bar on hover (no scale) */
.header-layout1 .header-top .header-links a:after{
  content: ""; position: absolute; left: 4px; right: 4px; bottom: -4px;
  height: 2px; border-radius: 2px; background: #ffffff;
  transform: scaleX(0); transform-origin: center; transition: transform .22s ease;
}
.header-layout1 .header-top .header-links a:hover{ color: #ffffff !important; }
.header-layout1 .header-top .header-links a:hover:after{ transform: scaleX(1); }
/* Header top: scale icon and link together when hovering the list item */
/* Disable previous scale-on-hover for topbar icons/links */
.header-layout1 .header-top .header-links li i{ display: inline-block; }
.header-layout1 .header-top .header-links li:hover i,
.header-layout1 .header-top .header-links li:hover a{ transform: none !important; }

/* Header sticky fix - sadece menu-area sticky olsun */
.sticky-wrapper {
  transition: all 0.3s ease;
}

.menu-area {
  transition: all 0.3s ease;
}

.menu-area.sticky-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999 !important;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100% !important;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Sticky menu için body padding ekle - içerik kaymasın */
body.sticky-menu-active {
  padding-top: 80px; /* Menu yüksekliği kadar */
}

@media (max-width: 991px) {
  body.sticky-menu-active {
    padding-top: 70px; /* Mobilde daha küçük */
  }
}


/* Footer: ensure clear hover feedback on dark background */
.footer-wrapper a[href^="tel:"],
.footer-wrapper a[href^="mailto:"]{
  text-decoration: none;
}
.footer-wrapper a[href^="tel:"]:hover,
.footer-wrapper a[href^="mailto:"]:hover{
  transform: scale(1.12);
}

/* Contact cards (career/contact pages) subtle lift on hover */
#career-contact .contact-card a[href^="tel:"],
#career-contact .contact-card a[href^="mailto:"],
.contact-item a[href^="tel:"],
.contact-item a[href^="mailto:"]{
  transition: color .2s ease, transform .2s ease;
}
#career-contact .contact-card a[href^="tel:"]:hover,
#career-contact .contact-card a[href^="mailto:"]:hover,
.contact-item a[href^="tel:"]:hover,
.contact-item a[href^="mailto:"]:hover{
  transform: scale(1.12);
}
/* Contact details: scale both icon and link together via parent hover */
.contact-item .contact-details p i,
.contact-item .contact-details p a[href^="tel:"],
.contact-item .contact-details p a[href^="mailto:"]{
  display: inline-block;
  transition: transform .18s ease;
  transform-origin: center;
}
.contact-item .contact-details p:hover i,
.contact-item .contact-details p:hover a[href^="tel:"],
.contact-item .contact-details p:hover a[href^="mailto:"]{
  transform: scale(1.12);
}


/* Modern Steps Section Styles */
.steps-timeline {
  position: relative;
  padding: 40px 0;
}

.steps-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(13, 94, 244, 0.1) 0%, rgba(13, 94, 244, 0.3) 50%, rgba(13, 94, 244, 0.1) 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.step-card {
  background: #ffffff;
  border: 2px solid rgba(13, 94, 244, 0.08);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d5ef4, #3b82f6);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(13, 94, 244, 0.2);
  box-shadow: 0 20px 48px rgba(13, 94, 244, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0d5ef4, #3b82f6);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(13, 94, 244, 0.3);
}

.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 94, 244, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.step-card:hover .step-icon-bg {
  transform: scale(1);
}

.step-icon i {
  font-size: 32px;
  color: #0d5ef4;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
  transform: scale(1.1);
  color: #1e40af;
}

.step-content {
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #0d5ef4;
}

.step-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.step-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.step-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #059669;
  font-size: 13px;
  font-weight: 500;
}

.step-feature i {
  color: #10b981;
  width: 16px;
}

.step-action {
  margin-top: 20px;
}

.step-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0d5ef4, #3b82f6);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(13, 94, 244, 0.3);
}

.step-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 94, 244, 0.4);
  color: white;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  background: #0d5ef4;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(13, 94, 244, 0.3);
  z-index: 3;
}

.step-success {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  z-index: 3;
}





/* Steps Responsive */
@media (max-width: 991.98px) {
  .steps-line {
    display: none;
  }
  
  .step-arrow,
  .step-success {
    display: none;
  }
  
  .step-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .step-card {
    padding: 24px 20px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon i {
    font-size: 24px;
  }
  
  .step-title {
    font-size: 20px;
  }
  

}

/* Modern FAQ Section Styles */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-card {
  background: #ffffff;
  border: 1px solid rgba(13, 94, 244, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 100%;
  min-width: 100%;
}

.faq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(13, 94, 244, 0.15);
  border-color: rgba(13, 94, 244, 0.2);
}

.faq-card_header {
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 94, 244, 0.02) 0%, rgba(13, 94, 244, 0.06) 100%);
  border-bottom: 1px solid rgba(13, 94, 244, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.faq-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0d5ef4, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle-line {
  position: absolute;
  background: #6b7280;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.faq-toggle-line:first-child {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq-toggle-line:last-child {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-card.active .faq-toggle-line:first-child {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-card_body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-card.active .faq-card_body {
  padding: 24px;
  max-height: 500px;
  opacity: 1;
}

.faq-card_body p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq-action {
  margin-top: 16px;
}

.faq-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.faq-badge {
  background: rgba(13, 94, 244, 0.08);
  color: #0d5ef4;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.faq-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.faq-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #059669;
  font-size: 14px;
}

.faq-feature i {
  color: #10b981;
}

.faq-exams {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.exam-badge {
  background: linear-gradient(135deg, #0d5ef4, #3b82f6);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.faq-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.schedule-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.schedule-time i {
  color: #f59e0b;
  width: 16px;
}

.faq-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.payment-option {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.payment-option:last-child {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

/* FAQ Responsive */
@media (max-width: 767.98px) {
  .faq-grid {
    gap: 16px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  
  .faq-card_header {
    padding: 20px;
    gap: 12px;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .faq-question {
    font-size: 15px;
  }
  
  .faq-card.active .faq-card_body {
    padding: 20px;
  }
}

/* About page: ensure strong contrast for intro text */
#about-intro .about-text,
#about-intro .about-text p {
	color: #000000;
}

/* Mission & Vision: enforce strong text contrast */
#mission-vision p,
#mission-vision .sec-title,
#mission-vision .sub-title {
	color: #000000;
}

/* Teacher Images - Standard Size */
.team-card .team-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.team-card .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease-in-out;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

/* Responsive adjustments for teacher images */
@media (max-width: 1199px) {
    .team-card .team-img {
        height: 260px;
    }
}

@media (max-width: 991px) {
    .team-card .team-img {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .team-card .team-img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .team-card .team-img {
        height: 200px;
    }
}

/* Career Page Styles */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(13, 94, 244, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(13, 94, 244, 0.15);
    border-color: rgba(13, 94, 244, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0d5ef4, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Process Cards */
.process-card {
    background: #ffffff;
    border: 1px solid rgba(13, 94, 244, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 94, 244, 0.15);
    border-color: rgba(13, 94, 244, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d5ef4, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    position: relative;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(13, 94, 244, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    z-index: -1;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.process-text {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Benefit Cards */
.benefit-card {
    background: #ffffff;
    border: 1px solid rgba(13, 94, 244, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(13, 94, 244, 0.15);
    border-color: rgba(13, 94, 244, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d5ef4, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Info */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(13, 94, 244, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(13, 94, 244, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d5ef4, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-details p {
    color: #6b7280;
    margin: 0;
    font-size: 14px;
}

/* Contact Form */
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid rgba(13, 94, 244, 0.08);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* (Reverted) Modern select: removed per request */

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: 1px solid rgba(13, 94, 244, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #0d5ef4;
    box-shadow: 0 0 0 3px rgba(13, 94, 244, 0.1);
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 767px) {
    .feature-card,
    .process-card,
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Modern Career Page Styles */
#career-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #04486a;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    font-weight: 500;
}

/* Modern Feature Cards */
.modern-feature-card {
    background: #ffffff;
    border: 1px solid rgba(4, 72, 106, 0.08);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.modern-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #04486a, #0d5ef4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.modern-feature-card:hover::before {
    transform: scaleX(1);
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(4, 72, 106, 0.15);
    border-color: rgba(4, 72, 106, 0.2);
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-feature-card:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-title-modern {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.modern-feature-card:hover .feature-title-modern {
    color: #04486a;
}

.feature-text-modern {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

/* Section Headers */
.section-header-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

/* Modern Job Cards */
.modern-job-card {
    background: #ffffff;
    border: 1px solid rgba(4, 72, 106, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.modern-job-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(4, 72, 106, 0.15);
    border-color: rgba(4, 72, 106, 0.2);
}

.job-header {
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.job-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.job-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.job-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.job-content {
    padding: 25px;
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.modern-job-card:hover .job-title {
    color: #04486a;
}

.job-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 13px;
}

.job-detail-item i {
    width: 16px;
    color: #04486a;
    font-size: 14px;
}

.job-footer {
    padding: 0 25px 25px;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 72, 106, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Modern Styles */
@media (max-width: 767px) {
    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
    
    .section-header-modern {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .modern-feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .job-details {
        gap: 6px;
    }
    
    .job-detail-item {
        font-size: 12px;
    }
}

/* Join Our Team Section - New Design */
.join-hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(4, 72, 106, 0.02) 0%, rgba(13, 94, 244, 0.05) 100%);
    border-radius: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.join-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2304486a" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%230d5ef4" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%2304486a" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%230d5ef4" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%2304486a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.join-hero-content {
    position: relative;
    z-index: 2;
}

.join-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(4, 72, 106, 0.3);
}

.join-title {
    font-size: 48px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
}

.join-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.join-stats .stat-item {
    text-align: center;
}

.join-stats .stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #04486a;
    line-height: 1;
    margin-bottom: 5px;
}

.join-stats .stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Floating Cards */
.join-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(4, 72, 106, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(4, 72, 106, 0.2);
}

.floating-card i {
    font-size: 32px;
    color: #04486a;
}

.floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Category Tabs */
.job-categories-section {
    margin-bottom: 60px;
}

.categories-header {
    margin-bottom: 40px;
}

.categories-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.categories-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-buttons {
    display: flex;
    background: white;
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(4, 72, 106, 0.1);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    border: none;
    background: transparent;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #04486a;
    background: rgba(4, 72, 106, 0.05);
}

.tab-btn.active {
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    color: white;
    box-shadow: 0 4px 15px rgba(4, 72, 106, 0.3);
}

.tab-btn i {
    font-size: 18px;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Form Wrap - Hızlı Başvuru Kartı */
.contact-form-wrap {
    background: linear-gradient(135deg, rgba(3, 56, 84, 0.12) 0%, rgba(3, 56, 84, 0.18) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(3, 56, 84, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(3, 56, 84, 0.1);
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="%23033554" opacity="0.08"/><circle cx="75" cy="75" r="1.5" fill="%23033554" opacity="0.08"/><circle cx="50" cy="10" r="1" fill="%23033554" opacity="0.06"/><circle cx="10" cy="60" r="1" fill="%23033554" opacity="0.06"/><circle cx="90" cy="40" r="1" fill="%23033554" opacity="0.06"/><circle cx="30" cy="80" r="0.8" fill="%23033554" opacity="0.05"/><circle cx="70" cy="20" r="0.8" fill="%23033554" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 0;
}

.contact-form-wrap .title-area,
.contact-form-wrap .contact-form {
    position: relative;
    z-index: 1;
}

/* Form elements styling for the contact form */
.contact-form-wrap .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(3, 56, 84, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-wrap .form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #033854;
    box-shadow: 0 0 0 3px rgba(3, 56, 84, 0.1);
}

/* File Upload Styles - Simple Version */
.form-label {
    display: block;
    font-weight: 600;
    color: #033854;
    margin-bottom: 8px;
    font-size: 14px;
}

.file-upload-simple {
    position: relative;
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-select-btn {
    background: rgba(3, 56, 84, 0.1);
    border: 1px solid rgba(3, 56, 84, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    color: #033854;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.file-select-btn:hover {
    background: rgba(3, 56, 84, 0.15);
    border-color: #033854;
    transform: translateY(-1px);
}

.file-selected-simple {
    margin-top: 8px;
}

.file-info-simple {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(3, 56, 84, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(3, 56, 84, 0.2);
}

.file-info-simple i {
    font-size: 16px;
    color: #033854;
    flex-shrink: 0;
}

.file-name-simple {
    font-size: 13px;
    color: #033854;
    font-weight: 500;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-remove-simple {
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 10px;
    flex-shrink: 0;
}

.file-remove-simple:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Quick Apply Section */
.quick-apply-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.quick-apply-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(4, 72, 106, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.quick-apply-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #04486a, #0d5ef4);
}

.apply-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(4, 72, 106, 0.1);
}

.apply-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.apply-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.apply-title p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.quick-apply-form {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.quick-apply-form .form-control {
    border: 1px solid rgba(4, 72, 106, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.quick-apply-form .form-control:focus {
    border-color: #04486a;
    box-shadow: 0 0 0 3px rgba(4, 72, 106, 0.1);
    background: white;
}

.quick-apply-form .form-control::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, #04486a, #0d5ef4);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.apply-btn:hover::before {
    left: 100%;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 72, 106, 0.3);
}

.apply-btn i {
    font-size: 16px;
}

/* Floating Stats in Quick Apply */
.quick-apply-card .floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-apply-card .stat-item {
    background: rgba(4, 72, 106, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    border: 1px solid rgba(4, 72, 106, 0.2);
}

.quick-apply-card .stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #04486a;
    line-height: 1;
}

.quick-apply-card .stat-label {
    font-size: 10px;
    color: #6b7280;
    margin-top: 2px;
    font-weight: 500;
}

/* Responsive Join Section */
@media (max-width: 991px) {
    .join-title {
        font-size: 36px;
    }
    
    .join-stats {
        gap: 20px;
    }
    
    .join-stats .stat-number {
        font-size: 24px;
    }
    
    .floating-cards {
        height: 300px;
    }
    
    .floating-card {
        padding: 20px;
    }
    
    .floating-card i {
        font-size: 24px;
    }
    
    .quick-apply-card {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-apply-card .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .join-hero-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .join-title {
        font-size: 28px;
    }
    
    .join-description {
        font-size: 16px;
    }
    
    .join-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .tab-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tab-btn {
        justify-content: center;
    }
    
    .categories-title {
        font-size: 28px;
    }
    
    .categories-subtitle {
        font-size: 16px;
    }
}

/* Phoenix (Anka) Preloader */
#preloader{ display:none !important; }
#preloader:before{ display:none !important; }
.phoenix-loader,
.phoenix,
.preloader-caption {
    display: none !important;
}

/* Dropdown menü stilleri */
.main-menu .menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.main-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 10px;
}

.main-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-menu .sub-menu li {
  display: block;
  margin: 0;
}

.main-menu .sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-main);
  font-size: 14px;
  transition: all 0.3s ease;
}

.main-menu .sub-menu li a:hover {
  background: rgba(4, 72, 106, 0.05);
  color: var(--color-primary);
  padding-left: 25px;
}

.main-menu .sub-menu li a:after {
  display: none;
}




