/* Subtle UI Improvements - Non-conflicting */

/* Performance and UX optimizations */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Prevent layout shift */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Improve tap targets for mobile - except CTA and service buttons */
button:not(.popup-close), [role="button"]:not(.service-item):not(.Getbutton):not(.Jobsbutton) {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile accessibility improvements */
@media (max-width: 768px) {
  button, [role="button"], a:not(.nav a) {
    min-height: 48px !important;
    min-width: 48px !important;
    padding: 12px !important;
  }
  
  .nav li a {
    min-height: 48px !important;
    padding: 12px 15px !important;
  }
  
  /* Mobile performance - reduce animations */
  * {
    animation-duration: 0.1s !important;
    transition-duration: 0.1s !important;
  }
  
  /* Optimize mobile images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* Navigation and other links */
nav a, .nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* CTA Buttons - COMPLETE RESET */
.Getbutton a, .Jobsbutton a {
  /* Reset all conflicting styles */
  display: inline-block !important;
  position: relative !important;
  
  /* Core button styling */
  padding: 18px 35px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  margin: 12px 8px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-align: center !important;
  
  /* Override accessibility rules */
  min-width: auto !important;
  min-height: auto !important;
  width: auto !important;
  height: auto !important;
  
  /* Transitions */
  transition: all 0.3s ease !important;
  
  /* Typography */
  line-height: 1.2 !important;
  letter-spacing: 0.5px !important;
}

.Getbutton a {
  background: linear-gradient(135deg, #67EBAB, #50d2cc) !important;
  color: white !important;
  border: none !important;
}

.Jobsbutton a {
  background: linear-gradient(135deg, #50d2cc, #3f234b) !important;
  color: white !important;
  border: none !important;
}

.Getbutton a:hover {
  transform: translateY(-2px);
  box-shadow: none !important;
}

.Jobsbutton a:hover {
  transform: translateY(-2px);  
  box-shadow: none !important;
}

/* Modern service cards - RESTORE ORIGINAL */
.service-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px !important;
  border: 1px solid rgba(103, 235, 171, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block !important; /* Override any flex from accessibility rules */
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #67EBAB, #50d2cc, #3f234b);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(103, 235, 171, 0.15);
  border-color: rgba(103, 235, 171, 0.3);
}

/* Contact form improvements */
form input, form textarea {
  transition: all 0.3s ease;
}

form input:focus, form textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 235, 171, 0.2);
}

/* Improved logo hover */
.logo img {
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Better navigation hover */
.nav li a {
  transition: all 0.3s ease;
  position: relative;
}

.nav li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #67EBAB, #50d2cc);
  transition: width 0.3s ease;
}

.nav li a:hover::after {
  width: 100%;
}

/* Hero section z-index fixes - CRITICAL */
.main-banner {
  position: relative;
  z-index: 1;
}

.main-banner .left-content, 
.main-banner .header-text {
  position: relative;
  z-index: 100 !important;
}

.main-banner .right-image {
  position: relative;
  z-index: 1;
}

.main-banner .col-lg-6:first-child {
  position: relative;
  z-index: 100 !important;
}

.main-banner h1,
.main-banner p {
  position: relative;
  z-index: 101 !important;
}

/* Ensure CTA buttons are visible */
.Getbutton, .Jobsbutton {
  position: relative;
  z-index: 102 !important;
  display: inline-block;
}

.Getbutton a, .Jobsbutton a {
  position: relative;
  z-index: 103 !important;
}

/* Subtle loading animation */
.main-banner .right-image img {
  animation: gentle-float 6s ease-in-out infinite;
  max-width: 100%;
  height: auto;
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Remove problematic popup container that was causing sign-in modal */
#modal.popupContainer {
  display: none !important;
}

/* Overlay background for popups */
#lean_overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.8) !important;
  z-index: 9998 !important;
}

/* YENİ POPUP SİSTEMİ CSS */
.service-item {
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

/* Popup overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  display: none;
}

/* Popup active service item */
.service-item.popup-active {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 90vw !important;
  max-width: 700px !important;
  max-height: 80vh !important;
  z-index: 9999 !important;
  background: white !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8) !important;
  overflow-y: auto !important;
  padding: 2rem !important;
  animation: popupFadeIn 0.3s ease-out !important;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Close button */
.popup-close {
  position: absolute !important;
  top: 15px !important;
  right: 20px !important;
  background: #ef4444 !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10000 !important;
  font-size: 18px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
}

.popup-close:hover {
  background: #dc2626 !important;
  transform: scale(1.1) !important;
}

.service-item.popup-active .popup-close {
  display: flex !important;
}

/* Video container in popup */
.service-item.popup-active .video-container {
  display: block !important;
  margin-top: 20px !important;
}

.service-item.popup-active .video-container img {
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
}

/* Dark mode popup styles */
.dark-mode .service-item.popup-active {
  background: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.dark-mode .service-item.popup-active h4 {
  color: #67EBAB !important;
}

.dark-mode .service-item.popup-active p {
  color: #b0b0b0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .service-item.popup-active {
    width: 95vw !important;
    max-height: 85vh !important;
    padding: 1.5rem !important;
  }
  
  .popup-close {
    width: 35px !important;
    height: 35px !important;
    font-size: 16px !important;
    top: 10px !important;
    right: 15px !important;
  }
}

/* Popup header styling */
.popupContainer:not(#modal) .popupHeader {
  background: transparent !important;
  padding: 2rem !important;
  border-radius: 12px 12px 0 0 !important;
  position: relative !important;
}

/* Close button positioning */
.popupContainer:not(#modal) .modal_close {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  cursor: pointer !important;
  font-size: 1.5rem !important;
  color: #999 !important;
  z-index: 10000 !important;
  width: 30px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
}

.popupContainer:not(#modal) .modal_close:hover {
  color: white !important;
  background: #ef4444 !important;
}

/* Product page card spacing */
.about-us .service-item {
  margin-bottom: 2rem !important;
  padding: 1.5rem !important;
}

.about-us .col-lg-6 {
  margin-bottom: 1rem !important;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .Getbutton a, .Jobsbutton a {
    display: block;
    margin: 0.5rem 0;
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 20;
  }
  
  .main-banner .left-content {
    z-index: 20;
  }
}

/* Smooth appearance animations */
.service-item, .main-banner .col-lg-6 {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.service-item:nth-child(2) {
  animation-delay: 0.7s;
}

.service-item:nth-child(3) {
  animation-delay: 0.9s;
}

.service-item:nth-child(4) {
  animation-delay: 1.1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact form consistency fixes */
#newsletter {
  background: linear-gradient(135deg, #3f234b 0%, #2d1b3d 100%);
  padding: 80px 0;
}

#newsletter .section-heading h4 {
  color: white;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

#newsletter form {
  max-width: 600px;
  margin: 0 auto;
}

#newsletter form input,
#newsletter form textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 16px !important;
  color: white !important;
  padding: 15px 20px !important;
  font-size: 16px !important;
  margin-bottom: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

#newsletter form input::placeholder,
#newsletter form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

#newsletter form button[type="submit"] {
  background: transparent !important;
  border: 2px solid white !important;
  color: white !important;
  padding: 15px 30px !important;
  font-size: 16px !important;
  border-radius: 30px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

/* Better footer - Full width for all pages - FIXED */
footer {
  background: linear-gradient(135deg, #3f234b 0%, #2d1b3d 100%) !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 60px 0 0 0 !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

footer .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px 40px 20px !important;
}

/* Copyright section full width */
.Copyright {
  background: #2d1b3d !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 20px 0 !important;
  text-align: center !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Footer links fix */
footer a {
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

footer a:hover {
  color: #67EBAB !important;
  text-decoration: underline !important;
}

.linkedin-link {
  color: #67EBAB !important;
}

/* Form submit button improvement */
button[type="submit"] {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
}

button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

button[type="submit"]:hover::before {
  left: 100%;
}

/* Blog page enhancements - IMPROVED UI */
.blog-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 2rem;
  border: 1px solid rgba(103, 235, 171, 0.1);
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #67EBAB, #50d2cc, #3f234b);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.blog-card:hover::before {
  transform: scaleX(1);
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(103, 235, 171, 0.3);
}

.blog-card .card-img-top {
  transition: transform 0.5s ease;
  height: 200px;
  object-fit: cover;
}

.blog-card:hover .card-img-top {
  transform: scale(1.08);
}

.blog-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 280px;
}

.blog-card .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .card-text {
  color: #4a4a4a; /* Improved contrast from #666 to #4a4a4a */
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .btn {
  background: linear-gradient(135deg, #67EBAB, #50d2cc);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.blog-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(103, 235, 171, 0.4);
  background: linear-gradient(135deg, #50d2cc, #67EBAB);
}

/* Blog section header */
.blog-section .section-heading h2 {
  background: linear-gradient(135deg, #67EBAB, #50d2cc, #3f234b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

/* Blog grid improvements */
.row.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 0;
}

.col-md-4.blog-item {
  margin-bottom: 0;
}

/* Blog meta information */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #999;
}

.blog-date {
  background: #f8f9fa;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: #666;
}

.blog-category {
  background: linear-gradient(135deg, #67EBAB, #50d2cc);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Blog image placeholders for missing images */
.blog-card img[src*="blog-remote.png"] {
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  position: relative;
}

.blog-card img[src*="blog-bias.png"] {
  background: linear-gradient(135deg, #EF4444, #F59E0B);
}

.blog-card img[src*="blog-skills.png"] {
  background: linear-gradient(135deg, #10B981, #059669);
}

.blog-card img[src*="blog-cost.png"] {
  background: linear-gradient(135deg, #3B82F6, #1D4ED8);
}

.blog-card img[src*="blog-trends.png"] {
  background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.blog-card img[src*="blog-candidate.png"] {
  background: linear-gradient(135deg, #67EBAB, #50d2cc);
}

/* DARK MODE SYSTEM */
/* Dark Mode Toggle Button */
.dark-mode-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 30px;
  background: #3f234b;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.dark-mode-toggle:focus {
  outline: 2px solid #67EBAB;
  outline-offset: 2px;
}

.dark-mode-toggle:hover {
  background: #67EBAB;
  box-shadow: 0 6px 20px rgba(103, 235, 171, 0.4);
}

.toggle-ball {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.dark-mode .toggle-ball {
  transform: translateX(30px);
  background: #2d1b3d;
  color: white;
}

/* Dark Mode Styles */
.dark-mode {
  background-color: #1a1a1a !important;
  color: #e0e0e0 !important;
}

.dark-mode body {
  background-color: #1a1a1a !important;
  color: #e0e0e0 !important;
}

.dark-mode .header-area {
  background-color: #2d2d2d !important;
}

.dark-mode .main-banner {
  background-color: #1a1a1a !important;
}

.dark-mode .services {
  background-color: #1a1a1a !important;
}

.dark-mode .service-item {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
  border-color: rgba(103, 235, 171, 0.2) !important;
}

.dark-mode .service-item h4 {
  color: #67EBAB !important;
}

.dark-mode .blog-card {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
  border-color: rgba(103, 235, 171, 0.2) !important;
}

.dark-mode .blog-card .card-title {
  color: #67EBAB !important;
}

.dark-mode .blog-card .card-text {
  color: #b0b0b0 !important;
}

.dark-mode footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%) !important;
}

.dark-mode .Copyright {
  background: #1a1a1a !important;
}

.dark-mode input, .dark-mode textarea {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
  border-color: rgba(103, 235, 171, 0.3) !important;
}

.dark-mode input::placeholder, .dark-mode textarea::placeholder {
  color: rgba(224, 224, 224, 0.7) !important;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5 {
  color: #e0e0e0 !important;
}

.dark-mode p, .dark-mode li, .dark-mode span {
  color: #b0b0b0 !important;
}

.dark-mode .section-heading h4 {
  color: #67EBAB !important;
}

/* Modal dark mode */
.dark-mode .modal-content {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.dark-mode .modal-header {
  border-bottom-color: #404040 !important;
}

.dark-mode .modal-title {
  color: #67EBAB !important;
}

.dark-mode .btn-close {
  filter: invert(1);
}

/* Legal pages dark mode */
.dark-mode .container {
  background-color: #1a1a1a !important;
  color: #e0e0e0 !important;
}

/* Navigation dark mode */
.dark-mode .nav li a {
  color: #e0e0e0 !important;
}

.dark-mode .nav li a:hover {
  color: #67EBAB !important;
}

.dark-mode .logo img {
  filter: brightness(1.2);
}

/* Service popup dark mode */
.dark-mode .service-item.active {
  background: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.dark-mode .service-item.active h4 {
  color: #67EBAB !important;
}

.dark-mode .service-item.active p {
  color: #b0b0b0 !important;
}

/* Responsive dark mode toggle */
@media (max-width: 768px) {
  .dark-mode-toggle {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 25px;
  }
  
  .toggle-ball {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
  
  .dark-mode .toggle-ball {
    transform: translateX(25px);
  }
}

/* Fallback for missing images */
.blog-card img[src*=".png"]:not([src*="blog-ai-hiring"]):not([src*="blog-2"]):not([src*="assistant"]):not([src*="time"]):not([src*="scalability"]):not([src*="matching"]) {
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blog-card img[src*="blog-remote.png"]::after {
  content: "🏠";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}

.blog-card img[src*="blog-bias.png"]::after {
  content: "⚖️";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}

.blog-card img[src*="blog-skills.png"]::after {
  content: "🎯";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}

.blog-card img[src*="blog-cost.png"]::after {
  content: "💰";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}

.blog-card img[src*="blog-trends.png"]::after {
  content: "📊";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}

.blog-card img[src*="blog-candidate.png"]::after {
  content: "👤";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
}

/* CTA BUTTONS - ULTIMATE FIX */
.Getbutton, .Jobsbutton {
  display: inline-block !important;
  margin: 15px 12px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.Getbutton::before, .Jobsbutton::before,
.Getbutton::after, .Jobsbutton::after {
  display: none !important;
}

.Getbutton a, .Jobsbutton a {
  /* Complete reset */
  all: unset !important;
  
  /* New styles - BIGGER & MORE PROMINENT */
  display: inline-block !important;
  padding: 24px 50px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  line-height: 1.3 !important;
  letter-spacing: 0.5px !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  min-width: 180px !important;
}

.Getbutton a::before, .Jobsbutton a::before,
.Getbutton a::after, .Jobsbutton a::after {
  display: none !important;
}

.Getbutton a {
  background: linear-gradient(135deg, #67EBAB, #50d2cc) !important;
}

.Jobsbutton a {
  background: linear-gradient(135deg, #50d2cc, #3f234b) !important;
}

.Getbutton a:hover, .Jobsbutton a:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: none !important;
  filter: brightness(1.15) !important;
  background: linear-gradient(135deg, #67EBAB, #50d2cc) !important;
}

.Jobsbutton a:hover {
  background: linear-gradient(135deg, #50d2cc, #3f234b) !important;
  filter: brightness(1.15) !important;
}

/* Main banner spacing adjustment */
.main-banner {
  padding: 120px 0 60px !important;
}

/* Services section closer spacing */
#services {
  padding-top: 40px !important;
}

/* About Us icons - Professional styling */
.fas.fa-bullseye,
.fas.fa-eye,
.fas.fa-users {
  transition: all 0.3s ease !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.fas.fa-bullseye:hover {
  transform: scale(1.1) rotate(10deg) !important;
  color: #50d2cc !important;
  text-shadow: 0 4px 20px rgba(103, 235, 171, 0.4) !important;
}

.fas.fa-eye:hover {
  transform: scale(1.1) !important;
  color: #67EBAB !important;
  text-shadow: 0 4px 20px rgba(80, 210, 204, 0.4) !important;
}

.fas.fa-users:hover {
  transform: scale(1.1) !important;
  color: #50d2cc !important;
  text-shadow: 0 4px 20px rgba(63, 35, 75, 0.4) !important;
}

/* Section heading improvements */
#mission h2, 
section h2 {
  color: #2d1b3d !important;
  position: relative !important;
}

#mission h2::after,
section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #67EBAB, #50d2cc);
  border-radius: 2px;
}

/* RESPONSIVE DESIGN SYSTEM - CLEAN APPROACH */

/* Hero Section Base - Flexbox Layout */
.main-banner .left-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.main-banner .left-content .row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.main-banner .col-lg-12 {
  width: 100%;
  max-width: 100%;
}

/* Button Wrapper - New HTML Structure */
.main-banner .button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-content: flex-start;
  align-items: stretch;
}

/* Buttons - 1.3X BIGGER with EQUAL WIDTH */
.main-banner .Getbutton, 
.main-banner .Jobsbutton {
  flex: 0 0 auto;
  width: 18%;
  min-width: 180px;
  max-width: 250px;
}

.main-banner .Getbutton a, 
.main-banner .Jobsbutton a {
  display: flex;
  width: 100%;
  height: 60px;
  text-align: center;
  padding: 18px 25px !important;
  border-radius: 25px !important;
  text-decoration: none;
  font-weight: 600 !important;
  font-size: 1.7rem !important;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Desktop/Tablet Landscape - min-width: 769px */
@media (min-width: 769px) {
  .main-banner {
    padding: 8rem 0 4rem;
  }
  
  .main-banner .left-content {
    gap: 2rem;
  }
  
  /* H1 BOYUTUNA DOKUNMA - ORJİNAL KALSIN */
  
  .main-banner p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Desktop Buttons - Horizontal Layout */
  .main-banner .col-lg-12:last-child {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  
  .main-banner .Getbutton, 
  .main-banner .Jobsbutton {
    flex: 1 1 auto;
    max-width: 250px;
  }
}

/* Mobile/Tablet Portrait - max-width: 768px */
@media (max-width: 768px) {
  .main-banner {
    padding: 6rem 0 3rem;
  }
  
  .main-banner .left-content {
    text-align: center;
    gap: 1.5rem;
  }
  
  /* H1 BOYUTUNA DOKUNMA - ORJİNAL KALSIN */
  
  .main-banner p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  /* Mobile Buttons - Vertical Layout CENTERED */
  .main-banner .button-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .main-banner .Getbutton, 
  .main-banner .Jobsbutton {
    width: 80%;
    max-width: 280px;
  }
}

/* Small Mobile - max-width: 480px */
@media (max-width: 480px) {
  .main-banner {
    padding: 5rem 0 2.5rem;
  }
  
  .main-banner .left-content {
    gap: 1rem;
  }
  
  /* H1 BOYUTUNA DOKUNMA - ORJİNAL KALSIN */
  
  .main-banner p {
    font-size: clamp(0.85rem, 4vw, 1rem);
    padding: 0 0.5rem;
  }
  
  .main-banner .Getbutton a, 
  .main-banner .Jobsbutton a {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Tablet: 768px - 992px - HAMBURGER ZONE */
@media (max-width: 992px) and (min-width: 768px) {
  /* HAMBURGER MENU */
  .header-area .menu-trigger {
    display: block !important;
  }
  
  .header-area .main-nav .nav {
    display: none !important;
  }
  
  /* SADECE GEREKLI LAYOUT DÜZELTMELERI */
  .main-banner .col-lg-6 {
    text-align: center;
    margin: 25px 0;
  }
  
  .main-banner .right-image {
    margin-top: 30px;
  }
  
  .main-banner .right-image img {
    max-width: 70% !important;
  }
}

/* Mobile: 769px'den küçük - DOĞRU RESPONSIVE MANTIĞI */
/* Mobilde DAHA BÜYÜK olsun, görünür olsun */

/* Tablet/Mobile: 600px - 768px */
@media (max-width: 768px) and (min-width: 600px) {
  .main-banner {
    padding: 100px 0 50px !important;
  }
  
  /* MOBİLDE DAHA BÜYÜK H1 */
  .main-banner h1 {
    font-size: 2.8rem !important;
    text-align: center;
    line-height: 1.2;
    font-weight: 700 !important;
  }
  
  .main-banner p {
    font-size: 1.1rem !important;
    text-align: center;
    margin-bottom: 30px !important;
  }
  
  .main-banner .right-image img {
    max-width: 60% !important;
  }
  
  /* BÜYÜK MOBİL BUTONLAR */
  .Getbutton a, .Jobsbutton a {
    display: block !important;
    margin: 15px auto !important;
    padding: 20px 40px !important;
    font-size: 19px !important;
    max-width: 300px !important;
    font-weight: 700 !important;
  }
}

/* Mobile Portrait: 400px - 599px */
@media (max-width: 599px) and (min-width: 400px) {
  .main-banner {
    padding: 90px 0 40px !important;
  }
  
  /* MOBİLDE HALA BÜYÜK */
  .main-banner h1 {
    font-size: 2.5rem !important;
    text-align: center;
    line-height: 1.2;
    font-weight: 700 !important;
  }
  
  .main-banner p {
    font-size: 1rem !important;
    text-align: center;
  }
  
  .main-banner .right-image img {
    max-width: 55% !important;
  }
  
  /* BÜYÜK BUTONLAR */
  .Getbutton a, .Jobsbutton a {
    display: block !important;
    margin: 12px auto !important;
    padding: 18px 35px !important;
    font-size: 18px !important;
    max-width: 280px !important;
    font-weight: 700 !important;
  }
}

/* Small Mobile: 320px - 399px */
@media (max-width: 399px) {
  .main-banner {
    padding: 80px 0 35px !important;
  }
  
  /* EN KÜÇÜK MOBİLDE BİLE GÖRÜNÜr */
  .main-banner h1 {
    font-size: 2.2rem !important;
    text-align: center;
    line-height: 1.3;
    font-weight: 700 !important;
  }
  
  .main-banner p {
    font-size: 0.95rem !important;
    padding: 0 15px;
    text-align: center;
  }
  
  .main-banner .right-image img {
    max-width: 50% !important;
  }
  
  /* GÖRÜNÜR BUTONLAR */
  .Getbutton a, .Jobsbutton a {
    display: block !important;
    margin: 10px auto !important;
    padding: 16px 30px !important;
    font-size: 17px !important;
    max-width: 260px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
  }
  
  .service-item {
    padding: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  
  /* About Us mobile */
  .fas.fa-bullseye,
  .fas.fa-eye,
  .fas.fa-users {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
  }
}

/* MODERN SIGN IN BUTTON */
.app-button {
  width: auto !important;
  height: 45px !important;
  background: linear-gradient(135deg, #67EBAB, #50d2cc) !important;
  border: none !important;
  border-radius: 25px !important;
  box-shadow: 0 4px 15px rgba(103, 235, 171, 0.3) !important;
  padding: 0 !important;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative !important;
  overflow: hidden !important;
}

.app-button::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.6s ease;
}

.app-button:hover::before {
  left: 100%;
}

.app-button:hover {
  background: linear-gradient(135deg, #50d2cc, #67EBAB) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(103, 235, 171, 0.4) !important;
}

.app-button a {
  color: white !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 45px !important;
  padding: 0 20px !important;
  border-radius: 25px !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
  z-index: 1 !important;
}

.app-button a:hover {
  color: white !important;
}

/* Add icon to sign in button */
.app-button a::before {
  content: "👤";
  margin-right: 8px;
  font-size: 14px;
}

/* HAMBURGER MENU CRITICAL FIXES */
/* Ensure hamburger menu shows at correct breakpoints */
@media (max-width: 1024px) {
  .header-area .menu-trigger {
    display: block !important;
    position: relative;
    width: 30px;
    height: 25px;
    text-indent: -9999em;
    appearance: none;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .header-area .main-nav .nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .header-area .main-nav .nav.active {
    display: block !important;
  }
}

/* Hero section column layout fixes */
@media (max-width: 1024px) {
  .main-banner .row {
    flex-direction: column-reverse;
    align-items: center;
  }
  
  .main-banner .col-lg-6:first-child {
    order: 2;
    z-index: 5 !important;
  }
  
  .main-banner .col-lg-6:last-child {
    order: 1;
    margin-bottom: 30px;
    z-index: 1 !important;
  }
  
  /* Button container spacing fix */
  .main-banner .left-content {
    padding-top: 20px !important;
    position: relative;
    z-index: 10 !important;
  }
  
  .main-banner .header-text {
    position: relative;
    z-index: 10 !important;
  }
  
  /* Specific button positioning */
  .main-banner .col-lg-12:last-child {
    margin-top: 30px !important;
    position: relative;
    z-index: 15 !important;
  }
}
