/*
Theme Name: Zeyve Yazılım - Kurumsal Website
Description: Custom CSS for Zeyve Software Solutions
Version: 1.0.1
Color Scheme: Corporate Navy Blue (Kurumsal Lacivert)
*/

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

/* ==================== Color Variables ==================== */
:root {
  /* Corporate Navy Colors */
  --zeyvE-primary: #0a2342;
  /* Deep Navy */
  --zeyvE-secondary: #1c3d6e;
  /* Rich Blue */
  --zeyvE-accent: #3b82f6;
  /* Bright Blue Accent */

  /* Gradients */
  --zeyvE-gradient: linear-gradient(135deg, #0a2342 0%, #1c3d6e 100%);
  --zeyvE-gradient-2: linear-gradient(to right, #0a2342, #1c3d6e);
  --zeyvE-gradient-3: linear-gradient(to bottom, #0a2342, #0f172a);

  /* Text Colors */
  --zeyvE-text: #475569;
  --zeyvE-heading: #1e293b;
  --zeyvE-light: #f8fafc;
}

/* --- New HTML Logo Styles --- */
.zeyve-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.zeyve-logo-svg {
  width: 48px;
  /* Increased from 40px */
  height: 48px;
  /* Removed CSS border-radius to let SVG vector shape handle corners without pixelation */
  /* Re-added border-radius to fix box-shadow corner artifacts */
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.15);
  /* Softer shadow */
  transition: transform 0.3s ease;
  shape-rendering: geometricPrecision;
  /* Ensure smooth vector edges */
  -webkit-backface-visibility: hidden;
  /* Prevent blur on transform */
  backface-visibility: hidden;
}

.zeyve-brand:hover .zeyve-logo-svg {
  transform: scale(1.03);
}

.zeyve-logo-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 26px;
  /* Increased to match logo */
  color: var(--zeyvE-heading);
  letter-spacing: -0.5px;
  line-height: 1;
}

footer .zeyve-logo-text {
  color: #fff;
}

/* Adjustments for header specific contexts */
.header-logo {
  display: inline-flex;
  /* Ensure flex behavior */
}

/* ==================== Global Overrides ==================== */
body {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  color: var(--zeyvE-text);
  background-color: var(--zeyvE-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--zeyvE-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  /* Tighter tracking for modern look */
}

/* ==================== Buttons ==================== */
.gt-theme-btn.zeyvE-btn {
  background: var(--zeyvE-gradient);
  border: 2px solid transparent;
  color: #fff;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(10, 35, 66, 0.3);
}

.gt-theme-btn.zeyvE-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.4);
}

.gt-theme-btn.zeyvE-btn-outline {
  background: transparent;
  border: 2px solid var(--zeyvE-primary);
  color: var(--zeyvE-primary);
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.gt-theme-btn.zeyvE-btn-outline:hover {
  background: var(--zeyvE-gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.4);
}

/* ==================== Header ==================== */
.header-3 {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(10, 35, 66, 0.05);
}

.header-top-3 {
  background: var(--zeyvE-gradient);
  color: #fff;
}

.header-top-3 p {
  color: #fff;
}

.header-top-3 a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

/* ==================== Hero Section ==================== */
.gt-hero-section.zeyvE-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 120px 0 80px;
}

.zeyvE-hero h1 {
  font-size: 56px;
  line-height: 1.2;
  background: var(--zeyvE-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  .zeyvE-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 575px) {
  .zeyvE-hero h1 {
    font-size: 32px;
  }
}

/* ==================== Service Cards ==================== */
.zeyvE-service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.zeyvE-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.1);
  border-color: var(--zeyvE-primary);
}

.zeyvE-service-icon {
  width: 80px;
  height: 80px;
  background: var(--zeyvE-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 36px;
  color: #fff;
  transition: all 0.4s ease;
}

.zeyvE-service-card:hover .zeyvE-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.zeyvE-service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--zeyvE-heading);
}

.zeyvE-service-card p {
  color: var(--zeyvE-text);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==================== Solution Cards ==================== */
.zeyvE-solution-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  height: 100%;
  border: 1px solid #e2e8f0;
}

.zeyvE-solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 35, 66, 0.1);
}

.zeyvE-solution-img {
  width: 100%;
  height: 250px;
  background: var(--zeyvE-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.9);
}

.zeyvE-solution-content {
  padding: 30px;
}

.zeyvE-solution-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--zeyvE-heading);
}

.zeyvE-solution-content p {
  color: var(--zeyvE-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.zeyvE-solution-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.zeyvE-solution-list li {
  padding: 8px 0;
  color: var(--zeyvE-text);
  position: relative;
  padding-left: 28px;
}

.zeyvE-solution-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--zeyvE-primary);
}

/* ==================== Stats Section ==================== */
.zeyvE-stats-box {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.zeyvE-stats-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.1);
}

.zeyvE-stats-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--zeyvE-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}

.zeyvE-stats-label {
  font-size: 16px;
  color: var(--zeyvE-text);
  font-weight: 600;
}

/* ==================== Testimonials ==================== */
.zeyvE-testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border-left: 5px solid var(--zeyvE-primary);
}

.zeyvE-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.1);
}

.zeyvE-testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--zeyvE-text);
  margin-bottom: 25px;
  font-style: italic;
}

.zeyvE-testimonial-author {
  display: flex;
  align-items: center;
}

.zeyvE-testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--zeyvE-gradient);
  margin-right: 15px;
}

.zeyvE-testimonial-info h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--zeyvE-heading);
}

.zeyvE-testimonial-info span {
  font-size: 14px;
  color: var(--zeyvE-text);
}

/* ==================== Section Titles ==================== */
.zeyvE-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.zeyvE-section-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--zeyvE-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  background: rgba(10, 35, 66, 0.05);
  /* Navy tint bg */
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
}

.zeyvE-section-title h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: var(--zeyvE-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  .zeyvE-section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .zeyvE-section-title h2 {
    font-size: 28px;
  }
}

.zeyvE-section-title p {
  font-size: 18px;
  color: var(--zeyvE-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==================== CTA Section ==================== */
.zeyvE-cta {
  background: var(--zeyvE-gradient);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zeyvE-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.zeyvE-cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.zeyvE-cta h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.zeyvE-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.zeyvE-cta .gt-theme-btn {
  background: #fff;
  color: var(--zeyvE-primary);
  position: relative;
  z-index: 1;
}

.zeyvE-cta .gt-theme-btn:hover {
  background: var(--zeyvE-dark);
  color: #fff;
}

/* ==================== FAQ Section ==================== */
.zeyvE-faq .accordion-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zeyvE-faq .accordion-item:hover {
  border-color: var(--zeyvE-primary);
}

.zeyvE-faq .accordion-button {
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--zeyvE-heading);
  padding: 25px 30px;
  border: none;
}

.zeyvE-faq .accordion-button:not(.collapsed) {
  background: var(--zeyvE-gradient);
  color: #fff;
}

.zeyvE-faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.zeyvE-faq .accordion-body {
  padding: 25px 30px;
  color: var(--zeyvE-text);
  line-height: 1.7;
}

/* ==================== Contact Form ==================== */
.zeyvE-form-group {
  margin-bottom: 25px;
}

.zeyvE-form-control {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.zeyvE-form-control:focus {
  outline: none;
  border-color: var(--zeyvE-primary);
  box-shadow: 0 0 0 3px rgba(10, 35, 66, 0.1);
}

.zeyvE-form-control::placeholder {
  color: #94a3b8;
}

textarea.zeyvE-form-control {
  resize: vertical;
  min-height: 150px;
}

/* ==================== Footer ==================== */
.zeyvE-footer {
  background: linear-gradient(135deg, #0a2342 0%, #0f172a 100%);
  color: rgba(255, 255, 255, 0.8);
}

.zeyvE-footer h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
}

.zeyvE-footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.zeyvE-footer a:hover {
  color: var(--zeyvE-primary);
  padding-left: 5px;
}

/* ==================== WhatsApp Button ==================== */
.zeyvE-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.zeyvE-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7);
  }
}

/* ==================== Hero Visualization (Dashboard) ==================== */
.zeyve-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 480px;
  margin: 0 auto;
  perspective: 1000px;
}

.zeyve-dashboard-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg);
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(10, 35, 66, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(20px);
  overflow: hidden;
  z-index: 10;
  transition: transform 0.4s ease;
}

.zeyve-visual-wrapper:hover .zeyve-dashboard-card {
  transform: translate(-50%, -50%) rotateY(0deg) rotateX(0deg);
}

/* Dashboard Decoration */
.dash-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  gap: 20px;
}

.dash-icon-dot {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e2e8f0;
}

.dash-icon-dot.active {
  background: var(--zeyvE-gradient);
  box-shadow: 0 4px 10px rgba(10, 35, 66, 0.3);
}

.dash-content {
  position: absolute;
  left: 70px;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}

.dash-header-skel {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.dash-title-skel {
  width: 150px;
  height: 24px;
  background: #e2e8f0;
  border-radius: 6px;
}

.dash-user-skel {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cbd5e1;
}

.dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.dash-chart-skel {
  height: 180px;
  background: linear-gradient(180deg, #f1f5f9 0%, #fff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
}

.dash-bar {
  width: 15%;
  background: #cbd5e1;
  border-radius: 4px 4px 0 0;
}

.dash-bar.c1 {
  height: 40%;
}

.dash-bar.c2 {
  height: 70%;
}

.dash-bar.c3 {
  height: 50%;
}

.dash-bar.c4 {
  height: 85%;
  background: var(--zeyvE-accent);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.dash-bar.c5 {
  height: 60%;
}

.dash-stat-skel {
  height: 180px;
  background: var(--zeyvE-gradient);
  border-radius: 16px;
  padding: 20px;
  opacity: 0.9;
}

/* Floating Elements */
.zeyve-float-card {
  position: absolute;
  padding: 16px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(10, 35, 66, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
  animation: zeyveFloat 6s ease-in-out infinite;
}

.zeyve-float-card.success {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.zeyve-float-card.user {
  bottom: 15%;
  left: -20px;
  animation-delay: 3s;
}

.float-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.float-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.3);
}

.float-icon.purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 6px 15px rgba(139, 92, 246, 0.3);
}

.float-content h6 {
  font-size: 15px;
  margin: 0;
  color: var(--zeyvE-heading);
}

.float-content span {
  font-size: 13px;
  color: #64748b;
}

/* Background Blurs */
.zeyve-blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.6;
}

.blur-1 {
  width: 300px;
  height: 300px;
  background: #3b82f6;
  top: -10%;
  right: -10%;
}

.blur-2 {
  width: 250px;
  height: 250px;
  background: #1c3d6e;
  bottom: -10%;
  left: -10%;
}

@keyframes zeyveFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ==================== Hero Split Image Layout ==================== */
.hero-ultra {
  position: relative;
  overflow: hidden;
  /* Prevent horizontal scroll */
}

.hero-right-split {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  /* Takes up exactly right half of viewport */
  height: 100%;
  z-index: 1;
}

.hero-right-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 0 0 40px;
  /* Style request */
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-right-split {
    position: relative;
    width: 100%;
    height: 400px;
    /* Fixed height for mobile */
    right: auto;
    top: auto;
    margin-top: 30px;
  }

  .hero-right-split img {
    border-radius: 20px;
  }
}

/* ==================== Footer Premium ==================== */
.footer-premium {
  background: var(--zeyvE-gradient-3) !important;
  /* Ensure Dark Gradient */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-premium .gt-footer-widget-items .gt-widget-head h3,
.footer-premium h3,
.footer-premium h4,
.footer-premium h5 {
  color: #fff !important;
  font-weight: 700;
}

.footer-premium p,
.footer-premium li,
.footer-premium span {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer-premium a {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.3s ease;
}

.footer-premium a:hover {
  color: #fff !important;
  padding-left: 5px;
}

.footer-premium .gt-list-area li {
  margin-bottom: 12px;
}

.footer-premium .gt-social-icon {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-premium .gt-social-icon a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  /* Flex to center icon */
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  transition: all 0.3s ease;
  margin-right: 0 !important;
  /* Remove legacy margins if any */
}

.footer-premium .gt-social-icon a:hover {
  background: var(--zeyvE-accent);
  transform: translateY(-3px);
  padding-left: 0 !important;
  /* Reset hover padding effect for icons */
}

.footer-premium .gt-footer-bottom-3 p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Ensure Logo text in footer is white */
.footer-premium .zeyve-logo-text {
  color: #fff !important;
}

/* ==================== Sidebar Widget Fixes ==================== */
.sidebar-widget .service-list li a {
  color: var(--zeyvE-heading);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sidebar-widget .service-list li a i {
  margin-right: 10px;
  font-size: 14px;
  color: var(--zeyvE-text);
  transition: all 0.3s ease;
}

.sidebar-widget .service-list li a:hover,
.sidebar-widget .service-list li.active a {
  color: var(--zeyvE-accent);
  padding-left: 5px;
}

.sidebar-widget .service-list li a:hover i,
.sidebar-widget .service-list li.active a i {
  color: var(--zeyvE-accent);
}

.sidebar-widget .widget-title {
  color: var(--zeyvE-heading);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 15px;
}

/* ==================== Final Visual Refinements ==================== */

/* 1. Standardize Hero Title Font */
/* Ensure inner pages (breadcumbs) match the homepage Serif font */
.gt-breadcrumb-sub-title h1 {
  font-family: 'TestTiemposFine-Regular', serif !important;
  font-weight: 400;
  /* Tiempos supports 400 */
}

/* Also ensure Section Titles use the Serif font if they aren't already */
.zeyvE-section-title h2 {
  font-family: 'TestTiemposFine-Regular', serif !important;
}

/* 2. Compact 'Teklif Al' Button */
.header-button .gt-theme-btn.btn-premium {
  padding: 12px 30px !important;
  /* Reduced from larger padding */
  font-size: 15px !important;
  /* Slightly smaller text */
  min-width: unset !important;
  /* Remove any min-width constraints */
  height: auto !important;
  line-height: normal !important;
  border-radius: 10px !important;
  /* Slightly tighter radius */
}

/* Ensure the button container doesn't force extra width */
.header-button {
  width: auto !important;
}

/* ==================== Feature Section Styling ==================== */
.feature-image-wrapper {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.feature-dashboard-img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  /* Soft, premium shadow */
  animation: zeyveFloat 6s ease-in-out infinite;
  /* Floating effect like hero */
  transition: transform 0.3s ease;
}

.feature-dashboard-img:hover {
  transform: translateY(-5px);
  /* Interactive lift */
}