/* Custom CSS for Fractional Systems Architect Positioning */

/* Performance: Ensure images maintain aspect ratio */
img {
  max-width: 100%;
  height: auto;
}

/* Smooth scrolling for better UX */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header/Logo Fixes */
.header-area .logo h1 {
  margin: 0;
  line-height: 1.2;
}

.header-area .logo {
  display: flex;
  align-items: center;
}

/* Button Fixes */
.btn-primary,
.boxed-btn {
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.boxed-btn:hover,
.boxed-btn:focus,
.boxed-btn:active {
  background: #0056b3 !important;
  color: #fff !important;
  border-color: #0056b3 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 91, 179, 0.4);
}

/* Button on white background - ensure visibility */
.final-cta-section .btn-primary:hover,
.final-cta-section .btn-primary:focus,
.pricing-section .btn-primary:hover,
.pricing-section .btn-primary:focus,
.faq-section .btn-primary:hover,
.faq-section .btn-primary:focus {
  background: #0056b3 !important;
  color: #fff !important;
  border-color: #0056b3 !important;
}

/* Hero Section Enhancements */
.social-proof-hero {
  font-size: 18px;
  color: #fff;
  margin: 25px auto 35px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.92;
  max-width: 900px;
}

.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-cta-buttons .btn {
  min-width: 220px;
  padding: 18px 30px;
  font-size: 14px;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 30px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #fff !important;
  color: #1e273d !important;
  border-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Value List Styling */
.value-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.value-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.8;
  color: #7a838b;
  font-size: 16px;
}

.value-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1cbbb4;
  font-weight: bold;
  font-size: 18px;
}

.value-list li strong {
  color: #191d34;
  font-weight: 600;
}

/* What I Do Section Title */
.service_area h2 {
  font-size: 42px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 50px;
}

/* Case Studies Section */
.case-studies-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

.case-studies-carousel {
  position: relative;
}

.case-studies-carousel .owl-nav {
  display: none;
}

.case-studies-carousel .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.case-studies-carousel .owl-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #d1d1d1;
  border-radius: 50%;
  margin: 0 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.case-studies-carousel .owl-dot:hover {
  background: #007bff;
  opacity: 0.7;
}

.case-studies-carousel .owl-dot.active {
  background: #007bff;
  width: 40px;
  border-radius: 12px;
}

.case-study-item {
  padding: 0 10px;
}

.case-studies-section h2 {
  font-size: 48px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 20px;
  color: #7a838b;
  margin-bottom: 60px;
}

.case-study {
  background: #fff;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1400px;
  margin: 0 auto;
}

.case-study:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.case-study-title {
  font-size: 36px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 40px;
  border-bottom: 5px solid #007bff;
  padding-bottom: 25px;
}

.case-study-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.case-study-block {
  padding: 25px;
  border-radius: 8px;
  background: #f8f9fa;
}

.case-study-block h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #191d34;
}

.case-study-block h4 i {
  margin-right: 8px;
}

.challenge-block {
  border-left: 4px solid #e74c3c;
}

.challenge-block h4 {
  color: #e74c3c;
}

.solution-block {
  border-left: 4px solid #3498db;
}

.solution-block h4 {
  color: #3498db;
}

.results-block {
  border-left: 4px solid #2ecc71;
}

.results-block h4 {
  color: #2ecc71;
}

.case-study-block ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.case-study-block li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #7a838b;
  line-height: 1.7;
  font-size: 16px;
}

.case-study-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 22px;
}

.solution-block li:before {
  color: #3498db;
}

.results-list li {
  color: #191d34;
}

.results-list li:before {
  content: "✓";
  color: #2ecc71;
}

.case-study-duration {
  display: inline-block;
  padding: 12px 24px;
  background: #007bff;
  color: #fff;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
}

.case-study-duration i {
  margin-right: 6px;
}

/* Testimonials Grid */
.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  color: #007bff;
  font-size: 32px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #191d34;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  border-top: 2px solid #f8f9fa;
  padding-top: 15px;
}

.author-name {
  font-weight: 600;
  color: #191d34;
  margin-bottom: 5px;
}

.author-company {
  color: #7a838b;
  font-size: 14px;
}

.linkedin-link {
  font-size: 16px;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.linkedin-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.testimonial_area h2 {
  font-size: 42px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 20px;
}

/* Portfolio Area - Match Testimonials styling */
.portfolio_area {
  position: relative;
  padding-top: 200px;
  padding-bottom: 0;
  background: #fff;
  z-index: 0;
}

.portfolio_area .outline_text {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 70px;
  font-size: 167px;
  font-weight: 700;
  -webkit-text-stroke: 1px #e5e6e9;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  z-index: -1;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .portfolio_area .outline_text {
    font-size: 120px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .portfolio_area .outline_text {
    font-size: 150px;
  }
}

.portfolio_area h2 {
  font-size: 42px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 20px;
}

/* How We Work Section */
.how-we-work-section {
  position: relative;
  padding: 200px 0 100px 0;
  background: #fff;
  z-index: 0;
}

.how-we-work-section .outline_text {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 70px;
  font-size: 167px;
  font-weight: 700;
  -webkit-text-stroke: 1px #e5e6e9;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  z-index: -1;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .how-we-work-section .outline_text {
    font-size: 120px;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .how-we-work-section .outline_text {
    font-size: 150px;
  }
}

.process-step {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 12px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #191d34;
  margin-top: 20px;
  margin-bottom: 10px;
}

.step-duration {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 20px;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-details li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #7a838b;
  line-height: 1.6;
  font-size: 15px;
}

.step-details li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/* Pricing/Investment Section */
.pricing-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.investment-range {
  text-align: center;
  margin-bottom: 30px;
}

.investment-amount {
  font-size: 28px;
  color: #191d34;
  margin-bottom: 10px;
}

.investment-amount strong {
  color: #007bff;
  font-size: 36px;
  font-weight: 700;
}

.investment-note {
  font-size: 16px;
  color: #5a6268;
  font-style: italic;
}

.comparison-divider {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #7a838b;
  margin: 20px 0;
}

.investment-disclaimer {
  font-size: 16px;
  color: #7a838b;
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.pricing-header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 3px solid #007bff;
  margin-bottom: 40px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 20px;
}

.pricing-rate {
  margin: 20px 0;
}

.pricing-rate .price {
  font-size: 56px;
  font-weight: 700;
  color: #007bff;
}

.pricing-rate .period {
  font-size: 24px;
  color: #7a838b;
  font-weight: 600;
}

.pricing-model {
  font-size: 18px;
  color: #7a838b;
  margin-top: 15px;
}

.pricing-comparison {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.pricing-comparison h4 {
  font-size: 22px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 25px;
}

.comparison-grid {
  margin-bottom: 20px;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
}

.comparison-item.highlight {
  background: #e7f3ff;
  border: 2px solid #007bff;
}

.comparison-label {
  font-weight: 600;
  color: #191d34;
  font-size: 16px;
}

.comparison-value {
  font-weight: 700;
  color: #007bff;
  font-size: 18px;
}

.comparison-note {
  text-align: center;
  font-size: 18px;
  color: #191d34;
  margin-top: 20px;
}

.pricing-includes {
  margin-bottom: 40px;
}

.pricing-includes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.included-list,
.excluded-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li,
.excluded-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #191d34;
  line-height: 1.6;
  font-size: 16px;
}

.included-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
  font-size: 20px;
}

.excluded-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: bold;
  font-size: 20px;
}

.pricing-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #f8f9fa;
}

.payment-terms,
.contract-terms {
  font-size: 15px;
  color: #7a838b;
  margin-bottom: 15px;
}

.pricing-footer .btn {
  margin-top: 20px;
}

.pricing-note {
  font-size: 16px;
  color: #7a838b;
}

.pricing-note a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* FAQ Section - Accordion Design */
.faq-section {
  padding: 100px 0;
  background: #ffffff;
}

.faq-card {
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-card:hover {
  border-color: #007bff;
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
}

.faq-card-header {
  padding: 0;
  background: transparent;
  border: none;
}

.faq-button {
  width: 100%;
  padding: 25px 30px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-button:hover {
  background: #f8f9fa;
}

.faq-button:focus {
  outline: none;
  box-shadow: none;
}

.faq-button.collapsed .faq-toggle i {
  transform: rotate(0deg);
}

.faq-button:not(.collapsed) .faq-toggle i {
  transform: rotate(180deg);
}

.faq-icon {
  color: #007bff;
  font-size: 22px;
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-title {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
  color: #191d34;
}

.faq-toggle {
  color: #007bff;
  font-size: 18px;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-toggle i {
  transition: transform 0.3s ease;
}

.faq-card-body {
  padding: 20px 30px 30px 67px;
  color: #7a838b;
  line-height: 1.8;
}

.faq-card-body p {
  margin-bottom: 15px;
  font-size: 16px;
}

.faq-card-body strong {
  color: #191d34;
  font-weight: 600;
}

.faq-card-body ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.faq-card-body ul li {
  padding: 8px 0 8px 25px;
  position: relative;
}

.faq-card-body ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

.faq-cta {
  font-size: 18px;
  color: #191d34;
  font-weight: 600;
}

.faq-cta .btn {
  margin-left: 15px;
}

/* Final CTA Section */
.final-cta-section .cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
  font-weight: 400;
}

.cta-qualification {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
}

.cta-qualification h4 {
  font-size: 24px;
  font-weight: 700;
  color: #191d34;
  margin-bottom: 30px;
  text-align: center;
}

.qualification-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualification-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #191d34;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
}

.qualification-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
  font-size: 20px;
}

.cta-action {
  margin: 40px 0;
}

.cta-action .btn {
  font-size: 18px;
  padding: 15px 40px;
}

.cta-note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-style: italic;
}

.cta-contact-links {
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-intro {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-links-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link:hover {
  color: #1cbbb4;
  transform: translateY(-3px);
  text-decoration: none;
}

.contact-link i {
  font-size: 22px;
}

/* Footer Enhancements */
.footer-content {
  padding: 60px 0 30px;
}

.footer_title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer_widget {
  text-align: left;
}

/* Copyright */
.copyright-break {
  display: none;
}

.copy_right {
  font-size: 15px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1cbbb4;
  text-decoration: none;
}

.footer-contact strong {
  color: #fff;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .case-studies-section {
    padding: 70px 0;
  }

  .case-study {
    padding: 45px;
    max-width: 1200px;
  }

  .case-study-title {
    font-size: 32px;
  }

  .case-studies-section h2 {
    font-size: 42px;
  }

  .how-we-work-section {
    padding: 100px 0 70px 0;
  }

  .how-we-work-section .outline_text {
    font-size: 100px;
    top: 30px;
  }

  .process-step {
    padding: 35px 25px;
  }

  .pricing-section {
    padding: 70px 0;
  }

  .pricing-card {
    padding: 40px;
  }

  .pricing-rate .price {
    font-size: 48px;
  }

  .faq-section {
    padding: 70px 0;
  }

  .faq-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .slider_text .title-arhitect {
    font-size: 20px !important;
    line-height: 1.5 !important;
    padding: 0 15px;
  }

  .slider_text h3 {
    font-size: 24px !important;
    line-height: 1.5 !important;
    padding: 0 15px;
    margin-top: 20px !important;
  }

  /* Fix text centering on tablets */
  .slider_text,
  .project_text,
  .section-subtitle {
    text-align: center !important;
  }

  .portfolio_area {
    padding-top: 100px;
  }

  .portfolio_area h2 {
    font-size: 36px;
  }

  .portfolio_area .outline_text {
    font-size: 100px;
    top: 30px;
  }

  .copy_right {
    font-size: 14px;
    padding: 0 20px;
  }

  /* Fix navigation header on tablet - reduce logo size */
  .header-area .logo h1 {
    font-size: 20px !important;
  }

  /* Fix "Or connect with me" centering on tablet */
  .cta-contact-links {
    text-align: center !important;
  }

  .contact-intro {
    text-align: center !important;
  }

  .how-we-work-section {
    padding: 80px 0 60px 0;
  }

  .how-we-work-section .outline_text {
    font-size: 80px;
    top: 20px;
  }

  .how-we-work-section h2 {
    font-size: 36px;
  }

  /* Center "How I Work" process steps on tablet */
  .process-step {
    padding: 30px 20px;
    margin-bottom: 40px;
    text-align: center !important;
  }

  .step-number {
    position: static !important;
    width: 45px;
    height: 45px;
    font-size: 22px;
    margin: 0 auto 20px !important;
  }

  .process-step h3 {
    text-align: center;
    margin-top: 0;
  }

  .step-duration {
    text-align: center;
  }

  .step-details {
    text-align: left;
    display: inline-block;
    max-width: 320px;
  }

  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 35px 25px;
  }

  .pricing-header h3 {
    font-size: 24px;
  }

  .pricing-rate .price {
    font-size: 42px;
  }

  .pricing-rate .period {
    font-size: 20px;
  }

  .comparison-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .pricing-includes .row {
    margin: 0;
  }

  .pricing-includes .col-md-6 {
    margin-bottom: 30px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-button {
    padding: 20px 25px;
  }

  .faq-title {
    font-size: 18px;
  }

  .faq-card-body {
    padding: 15px 25px 25px 60px;
  }

  .faq-card-body p {
    font-size: 15px;
  }

  .faq-cta {
    font-size: 16px;
  }

  .faq-cta .btn {
    display: block;
    margin: 15px auto 0;
    width: fit-content;
  }

  .cta-qualification {
    padding: 30px 25px;
  }

  .cta-qualification h4 {
    font-size: 22px;
  }

  .qualification-list li {
    font-size: 15px;
  }

  .contact-links-wrapper {
    gap: 20px;
    align-items: center;
  }

  .contact-link {
    font-size: 16px;
  }

  /* Fix testimonial cards on tablet */
  .testimonial-card {
    margin-bottom: 20px;
  }

  .testimonial_area .col-lg-4 {
    margin-bottom: 20px;
  }

  .social-proof-hero {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px auto 30px;
    padding: 0 15px;
  }

  .hero-cta-buttons {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    min-width: auto;
    font-size: 14px;
    padding: 16px 30px;
  }

  .btn-outline-light {
    padding: 16px 30px !important;
  }

  .footer-content {
    padding: 40px 0 20px;
  }

  .footer_widget {
    margin-bottom: 30px;
    text-align: center;
  }

  .footer_title {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .case-studies-section {
    padding: 60px 0;
  }

  .case-studies-section h2 {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .case-study {
    padding: 35px;
  }

  .case-study-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom-width: 4px;
  }

  .case-study-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .case-study-block {
    padding: 22px;
  }

  .case-study-block h4 {
    font-size: 19px;
  }

  .case-study-block li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .slider_text .title-arhitect {
    font-size: 18px !important;
    line-height: 1.4 !important;
    padding: 0 10px;
    display: block;
  }

  .slider_text h3 {
    font-size: 20px !important;
    line-height: 1.4 !important;
    padding: 0 10px;
    margin-top: 15px !important;
  }

  .service_area h2 {
    font-size: 32px;
  }

  .portfolio_area {
    padding-top: 70px;
  }

  .portfolio_area h2 {
    font-size: 30px;
  }

  .portfolio_area .outline_text {
    font-size: 60px;
    top: 20px;
  }

  .social-proof-hero {
    font-size: 13px;
    line-height: 1.5;
    margin: 15px auto 25px;
    padding: 0 10px;
  }

  /* Copyright break on mobile */
  .copyright-break {
    display: inline;
  }

  .copy_right {
    font-size: 13px;
    padding: 0 15px;
  }

  /* Fix text centering issues */
  .slider_text,
  .project_text,
  .section-subtitle,
  h2,
  h3,
  h4 {
    text-align: center !important;
  }

  .testimonial_area .row,
  .case-studies-section .row,
  .how-we-work-section .row,
  .pricing-section .row,
  .faq-section .row {
    text-align: center;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    font-size: 14px;
    padding: 16px 25px;
  }

  .btn-outline-light {
    padding: 16px 25px !important;
  }

  .footer_title {
    font-size: 18px;
    text-align: center;
  }

  .footer_widget {
    text-align: center;
  }

  .footer-links {
    text-align: center;
    list-style: none;
  }

  .footer-contact {
    text-align: center;
  }

  /* Fix "Or connect with me" centering */
  .cta-contact-links {
    text-align: center !important;
  }

  .contact-intro {
    text-align: center !important;
  }

  /* Fix navigation header on mobile - reduce logo size */
  .header-area .logo h1 {
    font-size: 18px !important;
    line-height: 1.2;
  }

  .how-we-work-section {
    padding: 70px 0 50px 0;
  }

  .how-we-work-section .outline_text {
    font-size: 60px;
    top: 15px;
  }

  .how-we-work-section h2 {
    font-size: 30px;
  }

  /* Center "How I Work" process steps on mobile */
  .process-step {
    padding: 25px 20px;
    text-align: center !important;
  }

  .step-number {
    position: static !important;
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin: 0 auto 15px !important;
  }

  .process-step h3 {
    font-size: 18px;
    text-align: center;
    margin-top: 0;
  }

  .step-duration {
    text-align: center;
  }

  .step-details {
    text-align: left;
    display: inline-block;
    max-width: 280px;
  }

  .step-details li {
    font-size: 14px;
  }

  .pricing-section {
    padding: 50px 0;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-header h3 {
    font-size: 22px;
  }

  .pricing-rate .price {
    font-size: 38px;
  }

  .pricing-rate .period {
    font-size: 18px;
  }

  .pricing-comparison h4,
  .pricing-includes h4 {
    font-size: 18px;
  }

  .comparison-label,
  .comparison-value {
    font-size: 14px;
  }

  .included-list li,
  .excluded-list li {
    font-size: 14px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-card {
    margin-bottom: 15px;
  }

  .faq-button {
    padding: 18px 20px;
  }

  .faq-icon {
    font-size: 18px;
    margin-right: 12px;
  }

  .faq-title {
    font-size: 17px;
  }

  .faq-toggle {
    font-size: 16px;
  }

  .faq-card-body {
    padding: 15px 20px 20px 50px;
  }

  .faq-card-body p {
    font-size: 14px;
  }

  .cta-qualification {
    padding: 25px 20px;
  }

  .cta-qualification h4 {
    font-size: 20px;
  }

  .qualification-list li {
    font-size: 14px;
    padding-left: 25px;
  }

  .cta-action .btn {
    font-size: 16px;
    padding: 12px 30px;
  }

  .cta-subtitle {
    font-size: 16px !important;
  }

  .contact-links-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .case-studies-section {
    padding: 50px 0;
  }

  .case-studies-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .case-study {
    padding: 25px;
    border-radius: 12px;
  }

  .case-study-title {
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom-width: 3px;
  }

  .case-study-content {
    gap: 20px;
    margin-bottom: 20px;
  }

  .case-study-block {
    padding: 18px;
  }

  .case-study-block h4 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .case-study-block li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 24px;
  }

  .case-study-item {
    padding: 0 5px;
  }

  .case-studies-carousel .owl-dots {
    margin-top: 35px;
  }

  .case-study-duration {
    font-size: 13px;
    padding: 10px 18px;
  }
}

@media (max-width: 380px) {
  .slider_text .title-arhitect {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  .slider_text h3 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .social-proof-hero {
    font-size: 12px;
  }

  .hero-cta-buttons .btn {
    max-width: 280px;
    font-size: 13px;
    padding: 14px 25px;
  }

  .btn-outline-light {
    padding: 14px 25px !important;
  }

  .case-study {
    padding: 20px;
  }

  .case-study-title {
    font-size: 20px;
  }

  .case-study-block {
    padding: 15px;
  }

  .case-study-block h4 {
    font-size: 16px;
  }

  .case-study-block li {
    font-size: 13px;
  }

  .cta-qualification h4 {
    font-size: 18px;
  }

  .qualification-list li {
    font-size: 13px;
  }

  /* Fix testimonials on very small screens */
  .testimonial-card {
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .quote-icon {
    font-size: 26px;
  }

  /* Fix pricing section on very small screens */
  .pricing-card {
    padding: 25px 15px;
  }

  .investment-amount {
    font-size: 22px;
  }

  .investment-amount strong {
    font-size: 28px;
  }
}

/* ===========================================
   WATERMARK STYLES - Light Mode (Original)
   =========================================== */

/* Light mode watermarks - visible and styled */
.outline_text,
.outline_text.white,
.outline_text.testmonial {
  opacity: 0.7;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.06);
  -webkit-text-fill-color: transparent;
}

.portfolio_area .outline_text,
.how-we-work-section .outline_text {
  opacity: 0.6;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.05);
}

/* ===========================================
   THEME TOGGLE BUTTON - Icon Only
   =========================================== */

.theme-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  line-height: 1;
}

.theme-toggle:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  background: #fff;
}

/* Light mode: show moon icon (to suggest switching to dark) */
.theme-toggle .icon-moon {
  display: inline-block;
  color: #1a1f2e;
  font-size: 24px;
  font-weight: bold;
}

.theme-toggle .icon-sun {
  display: none;
  font-size: 22px;
}

/* Dark mode toggle button styles */
body.dark-mode .theme-toggle {
  background: rgba(30, 36, 51, 0.95);
  border-color: #3d4558;
  color: #e4e6eb;
}

body.dark-mode .theme-toggle:hover {
  background: #252b3d;
}

/* Dark mode: show sun icon (to suggest switching to light) */
body.dark-mode .theme-toggle .icon-moon {
  display: none;
}

body.dark-mode .theme-toggle .icon-sun {
  display: inline-block;
  color: #ffc107;
}

/* ===========================================
   DARK MODE SUPPORT
   Only activates when body has .dark-mode class
   =========================================== */

/* Body and main backgrounds */
body.dark-mode {
  background-color: #121620;
  color: #e4e6eb;
}

/* Header */
body.dark-mode .header-area,
body.dark-mode .main-header-area,
body.dark-mode #sticky-header {
  background: #1a1f2e !important;
}

body.dark-mode .header-area .logo h1,
body.dark-mode .header-area .logo h1 span {
  color: #fac800 !important;
}

/* Navigation */
body.dark-mode .main-menu ul li a {
  color: #e4e6eb !important;
}

body.dark-mode .main-menu ul li a:hover {
  color: #fac800 !important;
}

body.dark-mode .main-menu ul li.active a {
  color: #fac800 !important;
}

/* Slider/Hero Section */
body.dark-mode .slider_area {
  background: #1b2235 !important;
}

body.dark-mode .slider_area .single_slider {
  background: #1b2235 !important;
}

/* Section backgrounds - ALL sections */
body.dark-mode .service_area,
body.dark-mode .about_me,
body.dark-mode .pricing-section,
body.dark-mode .faq-section,
body.dark-mode .testimonial_area,
body.dark-mode .portfolio_area,
body.dark-mode .how-we-work-section,
body.dark-mode .people_area,
body.dark-mode section {
  background: #121620 !important;
}

/* Alternating sections for visual hierarchy */
body.dark-mode .testimonial_area,
body.dark-mode .faq-section,
body.dark-mode .pricing-section {
  background: #1a1f2e !important;
}

/* Cards and boxes */
body.dark-mode .single_service,
body.dark-mode .testimonial-card,
body.dark-mode .pricing-card,
body.dark-mode .faq-card,
body.dark-mode .process-step,
body.dark-mode .case-study-block,
body.dark-mode .single_people {
  background: #1e2433 !important;
  border-color: #2d3548 !important;
}

body.dark-mode .single_service:hover,
body.dark-mode .testimonial-card:hover,
body.dark-mode .pricing-card:hover {
  background: #252b3d !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Typography - Headings */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode .section-title,
body.dark-mode .single_service h3,
body.dark-mode .pricing-card h3,
body.dark-mode .testimonial-author .author-name,
body.dark-mode .faq-title,
body.dark-mode .process-step h4,
body.dark-mode .case-study-block h4,
body.dark-mode .people_info h4 {
  color: #f0f2f5 !important;
}

/* Typography - Body text */
body.dark-mode p,
body.dark-mode .single_service p,
body.dark-mode .testimonial-text,
body.dark-mode .pricing-card p,
body.dark-mode .faq-card-body p,
body.dark-mode .faq-card-body li,
body.dark-mode .section-subtitle,
body.dark-mode .process-step p,
body.dark-mode .case-study-block li,
body.dark-mode .people_info p,
body.dark-mode ul li,
body.dark-mode ol li {
  color: #b0b8c4 !important;
}

/* Investment section specific */
body.dark-mode .investment-amount,
body.dark-mode .investment-amount strong {
  color: #fac800 !important;
}

body.dark-mode .investment-note {
  color: #8b95a5 !important;
}

body.dark-mode .investment-disclaimer {
  color: #7a8494 !important;
}

body.dark-mode .investment-range,
body.dark-mode .pricing-details {
  background: #252b3d !important;
}

/* FAQ Accordion */
body.dark-mode .faq-card {
  border-color: #2d3548 !important;
}

body.dark-mode .faq-card-header {
  background: #1e2433 !important;
}

body.dark-mode .faq-button {
  color: #e4e6eb !important;
  background: transparent !important;
}

body.dark-mode .faq-button:hover {
  background: #252b3d !important;
}

body.dark-mode .faq-card-body {
  background: #1a1f2e !important;
  border-top-color: #2d3548 !important;
}

body.dark-mode .faq-card-body strong {
  color: #e4e6eb !important;
}

body.dark-mode .faq-icon i,
body.dark-mode .faq-toggle i,
body.dark-mode .faq-toggle {
  color: #fac800 !important;
}

/* Testimonials */
body.dark-mode .testimonial_area {
  background: #1a1f2e !important;
}

body.dark-mode .quote-icon i {
  color: #fac800 !important;
}

body.dark-mode .author-company {
  color: #7a8494 !important;
}

body.dark-mode .linkedin-link {
  color: #fac800 !important;
}

/* Portfolio */
body.dark-mode .portfolio_area {
  background: #121620 !important;
}

body.dark-mode .single_gallery .thumb {
  border-color: #2d3548;
}

body.dark-mode .gallery_hover {
  background: rgba(26, 31, 46, 0.95) !important;
}

body.dark-mode .gallery_hover .hover_inner span {
  color: #121620 !important;
}

body.dark-mode .gallery_hover .hover_inner h3,
body.dark-mode .gallery_hover .hover_inner a {
  color: #121620 !important;
}

body.dark-mode .more_works a {
  color: #fff !important;
  border-color: #fac800 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

body.dark-mode .more_works a:hover {
  background: #fac800 !important;
  color: #121620 !important;
  border-color: #fac800 !important;
}

/* CTA Sections */
body.dark-mode .discuss_projects,
body.dark-mode .final-cta-section {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%) !important;
}

body.dark-mode .cta-qualification {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .qualification-list li {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Footer */
body.dark-mode footer,
body.dark-mode .footer_area,
body.dark-mode .copy-right_text {
  background: #1b2235 !important;
}

body.dark-mode .footer_title,
body.dark-mode .footer_widget h3 {
  color: #f0f2f5 !important;
}

body.dark-mode .footer-links li,
body.dark-mode .footer-links a,
body.dark-mode .footer-contact li,
body.dark-mode .footer_widget li,
body.dark-mode .footer_widget a {
  color: #b0b8c4 !important;
}

body.dark-mode .footer-links a:hover,
body.dark-mode .footer_widget a:hover {
  color: #fac800 !important;
}

body.dark-mode .social-item {
  color: #b0b8c4 !important;
  border-color: #2d3548 !important;
}

body.dark-mode .social-item:hover {
  color: #fac800 !important;
  border-color: #fac800 !important;
}

body.dark-mode .copy_right,
body.dark-mode .copy_right a {
  color: #7a8494 !important;
}

/* Watermarks in dark mode - very subtle */
body.dark-mode .outline_text,
body.dark-mode .outline_text.white,
body.dark-mode .outline_text.testmonial,
body.dark-mode .outline_text.project {
  -webkit-text-stroke: 1px #2d3548 !important;
  opacity: 0.3 !important;
}

body.dark-mode .portfolio_area .outline_text,
body.dark-mode .how-we-work-section .outline_text {
  -webkit-text-stroke: 1px #2d3548 !important;
  opacity: 0.25 !important;
}

/* Buttons */
body.dark-mode .btn-primary,
body.dark-mode .boxed-btn {
  background: #1976d2 !important;
  border-color: #1976d2 !important;
}

body.dark-mode .btn-primary:hover,
body.dark-mode .boxed-btn:hover {
  background: #1565c0 !important;
  border-color: #1565c0 !important;
}

body.dark-mode .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
}

body.dark-mode .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Links */
body.dark-mode a {
  color: #fac800;
}

body.dark-mode a:hover {
  color: #fac800;
}

/* Form elements (if any) */
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: #1e2433 !important;
  border-color: #2d3548 !important;
  color: #e4e6eb !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: #7a8494 !important;
}

/* Mobile menu - Dark mode base overrides (luxury styles at bottom take priority) */
body.dark-mode .slicknav_menu {
  background: transparent !important;
}

body.dark-mode .slicknav_nav {
  background: #1e2433 !important;
}

body.dark-mode .slicknav_nav a {
  color: #f0f2f5 !important;
}

body.dark-mode .slicknav_btn {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Pricing specific */
body.dark-mode .pricing-card .check-icon {
  color: #4caf50 !important;
}

body.dark-mode .pricing-card ul li {
  color: #b0b8c4 !important;
  border-bottom-color: #2d3548 !important;
}

body.dark-mode .pricing-card .included-list li {
  color: #b0b8c4 !important;
}

/* How I Work section */
body.dark-mode .process-step {
  background: #1e2433 !important;
}

body.dark-mode .process-step .step-number {
  background: #fac800 !important;
  color: #121620 !important;
}

/* Case study blocks */
body.dark-mode .case-study-block {
  background: #1e2433 !important;
  border-color: #2d3548 !important;
}

/* Selection highlight */
body.dark-mode ::selection {
  background: #1976d2;
  color: #fff;
}

body.dark-mode ::-moz-selection {
  background: #1976d2;
  color: #fff;
}

/* Additional elements that might have white backgrounds */
body.dark-mode .container,
body.dark-mode .row {
  background: transparent !important;
}

body.dark-mode .collapse,
body.dark-mode .collapsing {
  background: #1a1f2e !important;
}

body.dark-mode hr {
  border-color: #2d3548 !important;
}

body.dark-mode .card,
body.dark-mode .panel {
  background: #1e2433 !important;
  border-color: #2d3548 !important;
}

/* Service icons in dark mode */
body.dark-mode .single_service .icon img {
  filter: brightness(0.9) contrast(1.1);
}

/* ===========================================
   DARK MODE - COMPREHENSIVE FIX
   Additional sections and elements
   =========================================== */

/* Creative People / About Section */
body.dark-mode .creative_people,
body.dark-mode #about {
  background: #121620 !important;
}

body.dark-mode .creative_people .single_people {
  background: #1e2433 !important;
  border: 1px solid #2d3548 !important;
}

body.dark-mode .creative_people .people_info h4 {
  color: #f0f2f5 !important;
}

body.dark-mode .creative_people .people_info p {
  color: #b0b8c4 !important;
}

body.dark-mode .creative_people .single_service {
  background: #1e2433 !important;
}

body.dark-mode .creative_people .single_service h3 {
  color: #f0f2f5 !important;
}

body.dark-mode .creative_people .single_service p {
  color: #b0b8c4 !important;
}

body.dark-mode .creative_people .value-list li {
  color: #b0b8c4 !important;
}

body.dark-mode .creative_people .value-list li strong {
  color: #e4e6eb !important;
}

body.dark-mode .border_bottom {
  border-color: #2d3548 !important;
}

/* Fix all link colors in dark mode - more visible blue */
body.dark-mode a:not(.btn):not(.boxed-btn):not(.social-item) {
  color: #fac800 !important;
}

body.dark-mode a:not(.btn):not(.boxed-btn):not(.social-item):hover {
  color: #fac800 !important;
}

/* Ensure slider/hero text remains white */
body.dark-mode .slider_area a,
body.dark-mode .slider_area h1,
body.dark-mode .slider_area h2,
body.dark-mode .slider_area p {
  color: #fff !important;
}

body.dark-mode .slider_area .btn,
body.dark-mode .slider_area .boxed-btn {
  color: #121620 !important;
}

body.dark-mode .slider_area #view_case {
  color: #fff !important;
}

/* What I Do Section background */
body.dark-mode .whatIDoSection {
  background: transparent !important;
}

body.dark-mode .whatIDoSection .single_service {
  background: transparent !important;
  border: 1px solid #2d3548;
  border-radius: 8px;
}

/* Ensure all divs with white background are fixed */
body.dark-mode div[class*="area"],
body.dark-mode div[class*="section"] {
  background: #121620 !important;
}

/* Override for sections that need different backgrounds */
body.dark-mode .slider_area {
  background: linear-gradient(135deg, #1a1f2e 0%, #0d1117 100%) !important;
}

body.dark-mode .testimonial_area,
body.dark-mode .faq-section,
body.dark-mode .pricing-section {
  background: #1a1f2e !important;
}

body.dark-mode .discuss_projects,
body.dark-mode .final-cta-section {
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%) !important;
}

/* Header navigation links - should remain visible */
body.dark-mode .main-menu ul li a {
  color: #e4e6eb !important;
}

body.dark-mode .main-menu ul li a:hover,
body.dark-mode .main-menu ul li.active a {
  color: #fac800 !important;
}

/* Ensure all text in cards is readable */
body.dark-mode .single_service strong,
body.dark-mode .pricing-card strong,
body.dark-mode .faq-card-body strong,
body.dark-mode .testimonial-card strong {
  color: #e4e6eb !important;
}

/* Fix any remaining list items */
body.dark-mode li {
  color: #b0b8c4 !important;
}

body.dark-mode li strong {
  color: #e4e6eb !important;
}

/* Fix services area background */
body.dark-mode .services-area {
  background: transparent !important;
}

/* Specific fix for book call button area */
body.dark-mode .btn-bookCall {
  background: transparent !important;
}

/* Fix section titles that might be missed */
body.dark-mode .section_title h2,
body.dark-mode .section_title h4 {
  color: #f0f2f5 !important;
}

/* Fix span elements that might contain text */
body.dark-mode span:not(.icon-sun):not(.icon-moon) {
  color: inherit;
}

/* Ensure thumb/image containers have proper backgrounds */
body.dark-mode .thumb {
  background: #1e2433 !important;
}

/* Fix any white overlay backgrounds */
body.dark-mode .overlay,
body.dark-mode .bg-white,
body.dark-mode [style*="background: white"],
body.dark-mode [style*="background-color: white"],
body.dark-mode [style*="background:#fff"],
body.dark-mode [style*="background-color:#fff"] {
  background: #1e2433 !important;
}

/* Ensure all sections have dark background */
body.dark-mode section,
body.dark-mode article,
body.dark-mode aside,
body.dark-mode main {
  background: #121620 !important;
}

/* ===========================================
   DARK MODE - WHITE SECTIONS FIX
   Comprehensive fix for all remaining white areas
   =========================================== */

/* Case Study Section - Main Card */
body.dark-mode .case-study {
  background: #1e2433 !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .case-study:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

body.dark-mode .case-study-title {
  color: #f0f2f5 !important;
  border-bottom-color: #fac800 !important;
}

/* Case Study Blocks - Challenge, Solution, Results */
body.dark-mode .case-study-block {
  background: #252b3d !important;
}

body.dark-mode .challenge-block {
  border-left-color: #ef5350 !important;
}

body.dark-mode .challenge-block h4 {
  color: #ef5350 !important;
}

body.dark-mode .solution-block {
  border-left-color: #fac800 !important;
}

body.dark-mode .solution-block h4 {
  color: #fac800 !important;
}

body.dark-mode .results-block {
  border-left-color: #66bb6a !important;
}

body.dark-mode .results-block h4 {
  color: #66bb6a !important;
}

body.dark-mode .case-study-block li {
  color: #b0b8c4 !important;
}

body.dark-mode .results-list li {
  color: #e4e6eb !important;
}

body.dark-mode .solution-block li:before {
  color: #fac800 !important;
}

body.dark-mode .results-list li:before {
  color: #66bb6a !important;
}

/* Case Studies Section Background */
body.dark-mode .case-studies-section {
  background: #121620 !important;
}

body.dark-mode .case-studies-section h2 {
  color: #f0f2f5 !important;
}

/* Pricing Card - White Inner Area Fix */
body.dark-mode .pricing-card {
  background: #1e2433 !important;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .pricing-header {
  border-bottom-color: #fac800 !important;
}

body.dark-mode .pricing-header h3 {
  color: #f0f2f5 !important;
}

body.dark-mode .pricing-rate .price {
  color: #fac800 !important;
}

body.dark-mode .pricing-rate .period {
  color: #8b95a5 !important;
}

body.dark-mode .pricing-model {
  color: #8b95a5 !important;
}

/* Pricing Comparison - White Background Fix */
body.dark-mode .pricing-comparison {
  background: #252b3d !important;
}

body.dark-mode .pricing-comparison h4 {
  color: #f0f2f5 !important;
}

body.dark-mode .pricing-comparison p,
body.dark-mode .pricing-comparison span {
  color: #b0b8c4 !important;
}

body.dark-mode .comparison-divider {
  color: #8b95a5 !important;
}

/* Testimonial Cards */
body.dark-mode .testimonial-card {
  background: #1e2433 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Investment Range Section */
body.dark-mode .investment-range {
  background: #252b3d !important;
}

body.dark-mode .investment-amount {
  color: #f0f2f5 !important;
}

body.dark-mode .comparison-row {
  background: #1e2433 !important;
}

body.dark-mode .comparison-label {
  color: #b0b8c4 !important;
}

body.dark-mode .comparison-value {
  color: #fac800 !important;
}

body.dark-mode .savings-note {
  color: #8b95a5 !important;
}

/* ===========================================
   DARK MODE - BUTTON FIX
   Remove overlay/cancelled appearance
   =========================================== */

body.dark-mode .btn,
body.dark-mode .boxed-btn,
body.dark-mode .btn-primary,
body.dark-mode .btn_1 {
  background: #fac800 !important;
  border-color: #fac800 !important;
  color: #121620 !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

body.dark-mode .btn:hover,
body.dark-mode .boxed-btn:hover,
body.dark-mode .btn-primary:hover,
body.dark-mode .btn_1:hover {
  background: #e5b800 !important;
  border-color: #e5b800 !important;
  color: #121620 !important;
  opacity: 1 !important;
}

body.dark-mode .btn::before,
body.dark-mode .btn::after,
body.dark-mode .boxed-btn::before,
body.dark-mode .boxed-btn::after,
body.dark-mode .btn_1::before,
body.dark-mode .btn_1::after {
  display: none !important;
}

/* Ensure buttons don't have any overlay effect */
body.dark-mode a.btn,
body.dark-mode a.boxed-btn,
body.dark-mode button.btn {
  position: relative;
  overflow: visible;
}

/* CTA Section Buttons - should be white text on blue */
body.dark-mode .discuss_projects .btn,
body.dark-mode .final-cta-section .btn,
body.dark-mode .discuss_projects .boxed-btn,
body.dark-mode .final-cta-section .boxed-btn {
  background: #fff !important;
  color: #1976d2 !important;
  border-color: #fff !important;
}

body.dark-mode .discuss_projects .btn:hover,
body.dark-mode .final-cta-section .btn:hover,
body.dark-mode .discuss_projects .boxed-btn:hover,
body.dark-mode .final-cta-section .boxed-btn:hover {
  background: #e3f2fd !important;
  color: #1565c0 !important;
}

/* Pricing Details Table Fix */
body.dark-mode .pricing-details {
  background: #252b3d !important;
}

body.dark-mode .pricing-details th,
body.dark-mode .pricing-details td {
  color: #b0b8c4 !important;
  border-color: #2d3548 !important;
}

body.dark-mode .pricing-details strong {
  color: #f0f2f5 !important;
}

/* Included List in Pricing */
body.dark-mode .included-list {
  background: transparent !important;
}

body.dark-mode .included-list li {
  color: #b0b8c4 !important;
}

body.dark-mode .included-list li i {
  color: #66bb6a !important;
}

/* Owl Carousel Dots (if any) */
body.dark-mode .owl-dot span {
  background: #3d4558 !important;
}

body.dark-mode .owl-dot.active span {
  background: #fac800 !important;
}

/* ===========================================
   ADDITIONAL FIXES - User Feedback Dec 2025
   =========================================== */

/* 1. View Case Studies Button - Secondary style in dark mode */
body.dark-mode .btn-outline-light,
body.dark-mode .btn_2 {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
}

body.dark-mode .btn-outline-light:hover,
body.dark-mode .btn_2:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* 2. About Me Section - Add padding to card */
.creative_people .single_service {
  padding: 30px !important;
  border-radius: 12px;
}

.creative_people .single_people {
  padding: 20px;
  border-radius: 12px;
}

body.dark-mode .creative_people .single_service {
  padding: 30px !important;
  border: 1px solid #2d3548;
  border-radius: 12px;
}

/* 3. What I Solve Cards - Add padding */
.service_area .single_service {
  padding: 35px 30px !important;
  border-radius: 12px;
}

body.dark-mode .service_area .single_service {
  padding: 35px 30px !important;
  border: 1px solid #2d3548;
  border-radius: 12px;
}

/* 4. Investment Section - Fix white comparison-item div */
body.dark-mode .comparison-item {
  background: #252b3d !important;
}

body.dark-mode .comparison-item.highlight {
  background: #1e3a5f !important;
  border-color: #fac800 !important;
}

body.dark-mode .comparison-note {
  color: #b0b8c4 !important;
}

/* 5. Watermarks - Restore original for light, subtle for dark */
/* Light mode watermarks - restore original visibility */
.outline_text,
.outline_text.white,
.outline_text.testmonial,
.outline_text.project {
  opacity: 0.6;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
  -webkit-text-fill-color: transparent;
}

/* Dark mode watermarks - subtle but visible */
body.dark-mode .outline_text,
body.dark-mode .outline_text.white,
body.dark-mode .outline_text.testmonial,
body.dark-mode .outline_text.project {
  -webkit-text-stroke: 1px rgba(100, 181, 246, 0.15) !important;
  opacity: 0.5 !important;
}

body.dark-mode .portfolio_area .outline_text,
body.dark-mode .how-we-work-section .outline_text {
  -webkit-text-stroke: 1px rgba(100, 181, 246, 0.12) !important;
  opacity: 0.4 !important;
}

/* ===========================================
   FINAL FIXES - User Feedback Dec 2025
   =========================================== */

/* 1. Watermark visibility on LIGHT theme - make more visible */
.outline_text,
.outline_text.white,
.outline_text.testmonial,
.outline_text.project {
  opacity: 1 !important;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.12) !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.service_area .outline_text {
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.1) !important;
}

/* 2. More Works - Fix text color in dark mode */
body.dark-mode .more_works {
  background: transparent !important;
}

body.dark-mode .more_works a {
  color: #fff !important;
  border-color: #fac800 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
}

body.dark-mode .more_works a:hover {
  background: #fac800 !important;
  color: #121620 !important;
  border-color: #fac800 !important;
}

body.dark-mode .more_works a:hover span {
  color: #121620 !important;
}

body.dark-mode .more_works a span {
  color: inherit !important;
  transition: all 0.3s ease !important;
}

/* 3. Fix gallery/portfolio images - remove blue overlay */
body.dark-mode .portfolio_area {
  background: #121620 !important;
}

body.dark-mode .portfolio_wrap {
  background: transparent !important;
}

body.dark-mode .single_gallery {
  background: transparent !important;
}

body.dark-mode .single_gallery .thumb {
  background: transparent !important;
  border: none !important;
}

body.dark-mode .single_gallery .thumb img {
  filter: none !important;
}

body.dark-mode .gallery_hover {
  /* background: rgba(18, 22, 32, 0.9) !important; */
  background: none !important;
}

/* 4. GOLD ACCENT COLOR #fac800 - Dark Mode Theme Enhancement */
/* Primary accent elements */
body.dark-mode .btn-primary,
body.dark-mode .boxed-btn,
body.dark-mode .btn_1 {
  background: #fac800 !important;
  border-color: #fac800 !important;
  color: #121620 !important;
}

body.dark-mode .btn-primary:hover,
body.dark-mode .boxed-btn:hover,
body.dark-mode .btn_1:hover {
  background: #e5b800 !important;
  border-color: #e5b800 !important;
  color: #121620 !important;
}

/* Keep secondary/outline buttons as white outline */
body.dark-mode .btn-outline-light,
body.dark-mode .btn_2 {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
}

body.dark-mode .btn-outline-light:hover,
body.dark-mode .btn_2:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
}

/* CTA section buttons - white with gold hover */
body.dark-mode .discuss_projects .btn,
body.dark-mode .final-cta-section .btn,
body.dark-mode .discuss_projects .boxed-btn,
body.dark-mode .final-cta-section .boxed-btn {
  background: #fac800 !important;
  color: #121620 !important;
  border-color: #fac800 !important;
}

body.dark-mode .discuss_projects .btn:hover,
body.dark-mode .final-cta-section .btn:hover,
body.dark-mode .discuss_projects .boxed-btn:hover,
body.dark-mode .final-cta-section .boxed-btn:hover {
  background: #fff !important;
  color: #121620 !important;
  border-color: #fff !important;
}

/* Gold accents for interactive elements */
body.dark-mode .investment-amount strong {
  color: #fac800 !important;
}

body.dark-mode .pricing-rate .price {
  color: #fac800 !important;
}

body.dark-mode .linkedin-link {
  color: #fac800 !important;
}

body.dark-mode .linkedin-link:hover {
  color: #fff !important;
}

/* Gold for FAQ icons and toggle arrows */
body.dark-mode .faq-icon i,
body.dark-mode .faq-toggle i,
body.dark-mode .faq-toggle {
  color: #fac800 !important;
}

/* Gold for quote icons */
body.dark-mode .quote-icon i {
  color: #fac800 !important;
}

/* Gold for step numbers */
body.dark-mode .process-step .step-number {
  background: #fac800 !important;
  color: #121620 !important;
}

/* Gold for case study duration badge */
body.dark-mode .case-study-duration {
  background: #fac800 !important;
  color: #121620 !important;
}

/* Gold accents for borders/highlights */
body.dark-mode .pricing-header {
  border-bottom-color: #fac800 !important;
}

body.dark-mode .case-study-title {
  border-bottom-color: #fac800 !important;
}

/* Gold for value list checkmarks */
body.dark-mode .value-list li::before,
body.dark-mode .results-list li:before {
  color: #fac800 !important;
}

/* Gold for hover states on navigation */
body.dark-mode .main-menu ul li a:hover,
body.dark-mode .main-menu ul li.active a {
  color: #fac800 !important;
}

/* Gold for footer links hover */
body.dark-mode .footer-links a:hover,
body.dark-mode .footer_widget a:hover {
  color: #fac800 !important;
}

/* Gold for social item hover */
body.dark-mode .social-item:hover {
  color: #fac800 !important;
  border-color: #fac800 !important;
}

/* Owl carousel active dot */
body.dark-mode .owl-dot.active span {
  background: #fac800 !important;
}

/* Gold comparison item highlight border */
body.dark-mode .comparison-item.highlight {
  border-color: #fac800 !important;
}

/* Keep some elements blue for variety/contrast */
body.dark-mode .solution-block {
  border-left-color: #fac800 !important;
}

body.dark-mode .solution-block h4 {
  color: #fac800 !important;
}

body.dark-mode .solution-block li:before {
  color: #fac800 !important;
}

/* ===========================================
   DARK MODE FIXES - December 2025
   =========================================== */

/* 1. What I Solve section icons - change blue to orange */
body.dark-mode .single_service .icon img {
  filter: brightness(0) saturate(100%) invert(76%) sepia(98%) saturate(456%)
    hue-rotate(358deg) brightness(103%) contrast(96%) !important;
}

/* Alternative: Add orange tint to SVG icons */
body.dark-mode .service_area .single_service .icon img,
body.dark-mode .whatIDoSection .single_service .icon img {
  filter: brightness(0) saturate(100%) invert(76%) sepia(98%) saturate(456%)
    hue-rotate(358deg) brightness(103%) contrast(96%) !important;
}

/* 2. What I Solve cards - equal height */
.service_area .single_service {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.service_area .single_service p {
  flex-grow: 1;
}

/* Equal height for all service cards */
.services-area {
  display: flex;
  flex-wrap: wrap;
}

.services-area > div {
  display: flex;
}

.services-area .single_service {
  height: 100%;
  min-height: 320px;
}

/* 3. Case Studies carousel dots - blue to orange */
body.dark-mode .owl-dots .owl-dot span {
  background: #3d4558 !important;
}

body.dark-mode .owl-dots .owl-dot.active span {
  background: #fac800 !important;
}

body.dark-mode .owl-dot span {
  background: #3d4558 !important;
}

/* Slick carousel dots if used */
body.dark-mode .slick-dots li button:before {
  color: #3d4558 !important;
}

body.dark-mode .slick-dots li.slick-active button:before {
  color: #fac800 !important;
}

/* Generic carousel/slider dots */
body.dark-mode .carousel-indicators button,
body.dark-mode .carousel-indicators [data-bs-target] {
  background-color: #3d4558 !important;
}

body.dark-mode .carousel-indicators .active,
body.dark-mode .carousel-indicators button.active {
  background-color: #fac800 !important;
}

/* 4. How I Work arrow icons - blue to orange */
body.dark-mode .process-step li::before,
body.dark-mode .process-step ul li::before {
  color: #fac800 !important;
}

body.dark-mode .how-we-work-section li::before {
  color: #fac800 !important;
}

/* Arrow icons in process steps */
body.dark-mode .process-step .arrow-icon,
body.dark-mode .process-step i {
  color: #fac800 !important;
}

/* List item arrows/bullets in How I Work */
body.dark-mode .how-we-work-section .process-step li {
  color: #b0b8c4 !important;
}

body.dark-mode .how-we-work-section .process-step li::marker {
  color: #fac800 !important;
}

/* Fix arrow character color */
body.dark-mode .process-step li {
  position: relative;
}

/* 5. Portfolio section - change blue circle to orange on hover */
/* Keep same behavior as light mode, just change color from blue (#0181f5) to orange (#fac800) */
body.dark-mode .portfolio_area .single_gallery::before {
  background: #fac800 !important;
  content: "" !important;
  display: block !important;
}

body.dark-mode .portfolio_area .single_gallery:hover::before {
  background: #fac800 !important;
  opacity: 1 !important;
}

/* Gallery hover text colors in dark mode - dark text on orange circle */
body.dark-mode .gallery_hover .hover_inner h3,
body.dark-mode .gallery_hover .hover_inner a {
  color: #121620 !important;
}

body.dark-mode .gallery_hover .hover_inner span {
  color: #121620 !important;
}

body.dark-mode .gallery_hover .hover_inner a h3 {
  color: #121620 !important;
}

/* 6. About Me section - space between text and button */
.creative_people .single_service .btn,
.creative_people .single_service .boxed-btn {
  margin-top: 25px;
}

body.dark-mode .creative_people .single_service .btn,
body.dark-mode .creative_people .single_service .boxed-btn {
  margin-top: 25px;
}

/* Add margin after value-list before button */
.creative_people .value-list {
  margin-bottom: 20px;
}

.creative_people .single_service p:last-of-type {
  margin-bottom: 25px;
}

/* Ensure proper spacing in About Me section */
#about .single_service .btn,
#about .boxed-btn {
  margin-top: 30px;
}

/* Step details arrow icons - change to orange in dark mode */
body.dark-mode .step-details li:before {
  color: #fac800 !important;
}

body.dark-mode .step-details li {
  color: #b0b8c4 !important;
}

body.dark-mode .step-details li strong {
  color: #e4e6eb !important;
}

/* Case studies carousel - owl carousel dots */
body.dark-mode .case-studies-carousel .owl-dot span,
body.dark-mode .case-studies-section .owl-dot span {
  background: #3d4558 !important;
  border: none !important;
}

body.dark-mode .case-studies-carousel .owl-dot.active span,
body.dark-mode .case-studies-section .owl-dot.active span {
  background: #fac800 !important;
}

/* Case studies carousel dots - direct background (no span) */
body.dark-mode .case-studies-carousel .owl-dot {
  background: #3d4558 !important;
}

body.dark-mode .case-studies-carousel .owl-dot:hover {
  background: #fac800 !important;
  opacity: 0.7 !important;
}

body.dark-mode .case-studies-carousel .owl-dot.active {
  background: #fac800 !important;
}

/* All owl dots in dark mode */
body.dark-mode .owl-theme .owl-dots .owl-dot span {
  background: #3d4558 !important;
}

body.dark-mode .owl-theme .owl-dots .owl-dot.active span {
  background: #fac800 !important;
}

/* Portfolio - keep same behavior as light mode, just change circle color to orange */
body.dark-mode .single_gallery .thumb {
  overflow: hidden;
}

/* Portfolio hover overlay text - dark text readable on orange circle */
body.dark-mode .gallery_hover .hover_inner {
  color: #121620 !important;
}

/* ===========================================
   DARK MODE - FAQ ARROW FIX (High Specificity)
   =========================================== */
body.dark-mode .faq-section .faq-toggle,
body.dark-mode .faq-section .faq-toggle i,
body.dark-mode .faq-card .faq-toggle,
body.dark-mode .faq-card .faq-toggle i,
body.dark-mode .faq-button .faq-toggle,
body.dark-mode .faq-button .faq-toggle i,
body.dark-mode .accordion .faq-toggle,
body.dark-mode .accordion .faq-toggle i,
body.dark-mode span.faq-toggle,
body.dark-mode span.faq-toggle i,
body.dark-mode .faq-toggle,
body.dark-mode .faq-toggle i,
body.dark-mode .faq-toggle i.fa,
body.dark-mode .faq-toggle i.fa-chevron-down {
  color: #fac800 !important;
}

/* FAQ list item arrows (→) - change blue to orange in dark mode */
body.dark-mode .faq-card-body ul li:before,
body.dark-mode .faq-card-body ul li::before {
  color: #fac800 !important;
}

/* ===========================================
   DARK MODE - LINK HOVER FIX (Override blue)
   Navigation and footer links hover color
   =========================================== */
body.dark-mode a:hover {
  color: #fac800 !important;
}

body.dark-mode .header-area a:hover,
body.dark-mode .header-area .main-header-area a:hover,
body.dark-mode .header-area .main-header-area .main-menu ul li a:hover,
body.dark-mode .main-menu ul li a:hover,
body.dark-mode nav a:hover,
body.dark-mode .navbar a:hover {
  color: #fac800 !important;
}

body.dark-mode .footer a:hover,
body.dark-mode .footer_area a:hover,
body.dark-mode .footer-links a:hover,
body.dark-mode .footer-links li a:hover,
body.dark-mode .footer_widget a:hover,
body.dark-mode .footer_widget ul li a:hover,
body.dark-mode .footer .footer_top .footer_widget ul li a:hover {
  color: #fac800 !important;
}

body.dark-mode .slicknav_menu .slicknav_nav a:hover {
  background: #fac800 !important;
  color: #121620 !important;
}

/* Footer links hover - comprehensive fix */
body.dark-mode footer a:hover,
body.dark-mode .footer a:hover,
body.dark-mode .footer_area a:hover,
body.dark-mode .footer_top a:hover,
body.dark-mode .footer_widget a:hover,
body.dark-mode .footer_widget li a:hover,
body.dark-mode .footer_widget ul li a:hover,
body.dark-mode .footer .footer_top .footer_widget a:hover,
body.dark-mode .footer .footer_top .footer_widget ul li a:hover,
body.dark-mode .footer-links a:hover,
body.dark-mode .footer-links li a:hover,
body.dark-mode .footer-contact a:hover,
body.dark-mode .copy-right_text a:hover,
body.dark-mode .copy_right a:hover {
  color: #fac800 !important;
}

/* Social icons hover - change to orange */
body.dark-mode .social-item:hover,
body.dark-mode .social-item:hover i,
body.dark-mode .socail_links a:hover,
body.dark-mode .socail_links a:hover i,
body.dark-mode .socail_links ul li a:hover,
body.dark-mode .socail_links ul li a:hover i,
body.dark-mode .footer .socail_links ul li a:hover,
body.dark-mode .footer .socail_links ul li a:hover i,
body.dark-mode .social-icons a:hover,
body.dark-mode .social-icons a:hover i,
body.dark-mode footer .social-item:hover,
body.dark-mode footer .social-item:hover i {
  color: #fac800 !important;
  border-color: #fac800 !important;
  background: transparent !important;
}

/* Contact link in CTA section */
body.dark-mode .contact-link:hover,
body.dark-mode .contact-links-wrapper a:hover,
body.dark-mode .cta-contact-links a:hover {
  color: #fac800 !important;
}

/* ===========================================
   DARK MODE - FOOTER HOVER FIX (FINAL)
   Override ALL blue hover colors
   =========================================== */
body.dark-mode .footer .footer_widget ul li a:hover,
body.dark-mode .footer .footer_top .footer_widget ul li a:hover,
body.dark-mode .footer .footer_widget p a:hover,
body.dark-mode .footer .footer_top .footer_widget p a:hover,
body.dark-mode .footer .footer-links li a:hover,
body.dark-mode .footer .footer-contact a:hover,
body.dark-mode .footer .footer-contact li a:hover,
body.dark-mode .footer ul.footer-links li a:hover,
body.dark-mode footer.footer .footer_widget a:hover,
body.dark-mode footer.footer ul li a:hover,
body.dark-mode footer.footer a:hover,
body.dark-mode footer#contact a:hover,
body.dark-mode footer#contact .footer_widget a:hover,
body.dark-mode footer#contact ul li a:hover,
body.dark-mode #contact a:hover,
body.dark-mode #contact .footer_widget a:hover {
  color: #fac800 !important;
}

/* Social icons in footer - override blue background */
body.dark-mode .footer .socail_links ul li a:hover,
body.dark-mode .footer .social-item:hover,
body.dark-mode .footer_widget .social-item:hover,
body.dark-mode .site-footer .social-item:hover,
body.dark-mode footer .social-item:hover,
body.dark-mode footer#contact .social-item:hover,
body.dark-mode a.social-item:hover {
  color: #fac800 !important;
  background: transparent !important;
  border-color: #fac800 !important;
}

body.dark-mode .footer .socail_links ul li a:hover i,
body.dark-mode .footer .social-item:hover i,
body.dark-mode .footer_widget .social-item:hover i,
body.dark-mode .site-footer .social-item:hover i,
body.dark-mode footer .social-item:hover i,
body.dark-mode footer#contact .social-item:hover i,
body.dark-mode a.social-item:hover i {
  color: #fac800 !important;
}

/* ===========================================
   DARK MODE - ULTIMATE FOOTER FIX
   Exact selectors matching HTML structure
   =========================================== */
body.dark-mode footer.footer ul.footer-links li a:hover,
body.dark-mode footer.footer .footer_widget ul.footer-links li a:hover,
body.dark-mode footer.footer .footer_widget ul.footer-contact li a:hover,
body.dark-mode footer.footer .container .row .footer_widget ul li a:hover {
  color: #fac800 !important;
}

/* Social items exact match */
body.dark-mode footer.footer .footer_widget.site-footer a.social-item:hover,
body.dark-mode footer.footer .footer_widget.site-footer a.social-item:hover i,
body.dark-mode footer.footer .footer_widget .social-item:hover,
body.dark-mode footer.footer .footer_widget .social-item:hover i {
  color: #fac800 !important;
  background: transparent !important;
  border-color: #fac800 !important;
}

/* Nuclear option - any a:hover in dark mode footer */
body.dark-mode footer a:hover,
body.dark-mode footer li a:hover,
body.dark-mode footer ul li a:hover {
  color: #fac800 !important;
}

/* ===========================================
   SMOOTH SCROLL (Lenis) - 2025 Trends
   =========================================== */

/* Lenis smooth scroll body styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Enhanced hover effects for cards */
.single_service,
.testimonial-card,
.process-step,
.faq-card,
.case-study,
.pricing-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.single_service:hover,
.testimonial-card:hover,
.process-step:hover,
.case-study:hover,
.pricing-card:hover {
  transform: translateY(-8px);
}

/* Smooth image reveals */
.single_gallery .thumb img,
.case-study img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .single_service,
  .testimonial-card,
  .process-step,
  .faq-card,
  .case-study,
  .pricing-card,
  .single_gallery .thumb img {
    transition: none !important;
  }
}

/* ===========================================
   PREMIUM LUXURY EFFECTS - Minimal & Elegant
   =========================================== */

/* Glassmorphism Navigation on Scroll */
.header-area.sticky.glass-nav {
  background: rgba(26, 31, 46, 0.85) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

body:not(.dark-mode) .header-area.sticky.glass-nav {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

/* Subtle button glow - DARK MODE ONLY */
body.dark-mode .btn-primary,
body.dark-mode .boxed_btn {
  position: relative;
  overflow: visible;
}

body.dark-mode .btn-primary::before,
body.dark-mode .boxed_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fac800;
  border-radius: inherit;
  filter: blur(20px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

body.dark-mode .btn-primary:hover::before,
body.dark-mode .boxed_btn:hover::before {
  opacity: 0.4;
}

/* Elegant card shadows on hover */
.single_service,
.testimonial-card,
.pricing-card,
.faq-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.single_service:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-8px);
}

body.dark-mode .single_service:hover,
body.dark-mode .testimonial-card:hover,
body.dark-mode .pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
              0 0 60px rgba(250, 200, 0, 0.05);
}

body:not(.dark-mode) .single_service:hover,
body:not(.dark-mode) .testimonial-card:hover,
body:not(.dark-mode) .pricing-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Smooth image hover */
.single_gallery .thumb img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.single_gallery:hover .thumb img {
  transform: scale(1.03);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .single_service,
  .testimonial-card,
  .pricing-card,
  .faq-card,
  .single_gallery .thumb img {
    transition: none !important;
  }
}

/* ===========================================
   PREMIUM SCROLLBAR - Custom Brand Colors
   =========================================== */

/* Light Mode Scrollbar - White + Blue (#007bff) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff !important;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #007bff !important;
  border-radius: 10px;
  border: 2px solid #ffffff;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #0056b3 !important;
}

::-webkit-scrollbar-thumb:active {
  background: #004494 !important;
}

/* Firefox Scrollbar - Light */
* {
  scrollbar-width: thin;
  scrollbar-color: #007bff #ffffff;
}

/* Dark Mode Scrollbar - Orange (#fac800) + Background (#121620) */
body.dark-mode::-webkit-scrollbar-track,
.dark-mode ::-webkit-scrollbar-track {
  background: #121620 !important;
}

body.dark-mode::-webkit-scrollbar-thumb,
.dark-mode ::-webkit-scrollbar-thumb {
  background: #fac800 !important;
  border: 2px solid #121620;
}

body.dark-mode::-webkit-scrollbar-thumb:hover,
.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: #ffda44 !important;
}

body.dark-mode::-webkit-scrollbar-thumb:active,
.dark-mode ::-webkit-scrollbar-thumb:active {
  background: #d4a800 !important;
}

/* Firefox Scrollbar - Dark */
body.dark-mode,
body.dark-mode * {
  scrollbar-color: #fac800 #121620 !important;
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
  background: #ffffff;
}

body.dark-mode::-webkit-scrollbar-corner {
  background: #121620 !important;
}

/* Hide horizontal scrollbar but keep functionality */
html {
  overflow-x: hidden;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* ===========================================
   LUXURY NAVIGATION - Premium Experience
   Professional, High-End Design System
   =========================================== */

/* CSS Custom Properties for Navigation */
:root {
  --nav-transition: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Main Header Area - Luxury Base */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--nav-transition);
}

/* Fix slider area padding for fixed header - prevents text cutoff */
.slider_area {
  padding-top: 60px;
}

.header-area .main-header-area {
  padding: 18px 0 !important;
  background: #040e27 !important;
  transition: all 0.4s var(--nav-transition);
}

body.dark-mode .header-area .main-header-area {
  background: #121620 !important;
}

/* Scrolled/Sticky State - Navy Background */
.header-area.scrolled .main-header-area,
.header-area .main-header-area.sticky {
  padding: 14px 0;
  background: #040e27 !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

body.dark-mode .header-area.scrolled .main-header-area,
body.dark-mode .header-area .main-header-area.sticky {
  background: rgba(18, 22, 32, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* ===== LOGO STYLING ===== */
.header-area .logo {
  position: relative;
}

.header-area .logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s var(--nav-transition);
}

.header-area .logo a:hover {
  opacity: 0.9;
}

/* SVG Logo Icon - Light mode: white on navy header */
.header-area .logo .logo-icon {
  width: 28px;
  height: 28px;
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s var(--nav-transition);
}

.header-area .logo a:hover .logo-icon {
  transform: scale(1.05);
}

/* Logo Text - Light mode: white on navy header */
.header-area .logo .logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  transition: color 0.3s var(--nav-transition);
}

/* Dark mode - gold accent for logo */
body.dark-mode .header-area .logo .logo-icon {
  color: #fac800;
}

body.dark-mode .header-area .logo .logo-text {
  color: #f0f2f5;
}

/* ===== NAVIGATION LINKS ===== */
.header-area .main-menu nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-area .main-menu nav ul li {
  position: relative;
  margin: 0;
}

.header-area .main-menu nav ul li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s var(--nav-transition);
  position: relative;
}

/* Remove default underline pseudo-element */
.header-area .main-menu nav ul li a::before {
  display: none !important;
}

/* Hover State */
.header-area .main-menu nav ul li a:hover,
.header-area .main-menu nav ul li a:focus {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
}

/* Active State - Light mode: white text */
.header-area .main-menu nav ul li.active a,
.header-area .main-menu nav ul li a.active {
  color: #ffffff !important;
}

.header-area .main-menu nav ul li.active a::after,
.header-area .main-menu nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
}

/* Dark mode adjustments */
body.dark-mode .header-area .main-menu nav ul li a {
  color: rgba(240, 242, 245, 0.85) !important;
}

body.dark-mode .header-area .main-menu nav ul li a:hover,
body.dark-mode .header-area .main-menu nav ul li a:focus {
  color: #fac800 !important;
  background: rgba(250, 200, 0, 0.1);
}

body.dark-mode .header-area .main-menu nav ul li.active a,
body.dark-mode .header-area .main-menu nav ul li a.active {
  color: #fac800 !important;
}

body.dark-mode .header-area .main-menu nav ul li.active a::after,
body.dark-mode .header-area .main-menu nav ul li a.active::after {
  background: #fac800;
}

/* ===== THEME TOGGLE - LUXURY REDESIGN ===== */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--nav-transition);
  overflow: hidden;
}

.theme-toggle:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.theme-toggle:active {
  transform: translateY(-2px) scale(1.02);
}

.theme-toggle .icon-moon,
.theme-toggle .icon-sun {
  transition: all 0.4s var(--nav-transition-spring);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle .icon-moon {
  display: flex;
}

.theme-toggle .icon-moon svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 4px rgba(255, 179, 0, 0.3)) drop-shadow(0 0 8px rgba(255, 179, 0, 0.25));
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-sun svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 12px rgba(255, 200, 0, 0.6)) drop-shadow(0 0 4px rgba(255, 170, 0, 0.8));
}

body.dark-mode .theme-toggle {
  background: #1e2433;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(250, 200, 0, 0.15);
}

body.dark-mode .theme-toggle:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(250, 200, 0, 0.15), 0 0 0 1px rgba(250, 200, 0, 0.25);
}

body.dark-mode .theme-toggle .icon-moon {
  display: none;
}

body.dark-mode .theme-toggle .icon-sun {
  display: flex;
}

/* ===== MOBILE NAVIGATION - LUXURY ===== */
@media (max-width: 991px) {
  /* Header adjustments - ALWAYS navy background on mobile */
  .header-area {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
  }

  /* Add padding to slider/banner area to account for fixed header */
  .slider_area {
    padding-top: 56px !important;
  }

  .header-area .main-header-area {
    padding: 14px 0 !important;
    background: #040e27 !important;
    box-shadow: none !important;
  }

  body.dark-mode .header-area .main-header-area {
    background: #0d1321 !important;
  }

  .header-area.scrolled .main-header-area,
  .header-area .main-header-area.sticky {
    padding: 12px 0 !important;
    background: #040e27 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  }

  body.dark-mode .header-area.scrolled .main-header-area,
  body.dark-mode .header-area .main-header-area.sticky {
    background: #0d1321 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  }

  /* Logo - show only icon on mobile, hide text */
  .header-area .logo .logo-text {
    display: none !important;
  }

  /* Mobile logo - WHITE on navy header (both light and dark mode) */
  .header-area .logo .logo-icon {
    width: 30px !important;
    height: 30px !important;
    color: #ffffff !important;
  }

  /* Dark mode mobile - gold logo */
  body.dark-mode .header-area .logo .logo-icon {
    color: #fac800 !important;
  }

  /* Mobile menu container - clean positioning */
  .mobile_menu {
    position: relative !important;
    display: block !important;
  }

  /* SlickNav Menu Container */
  .slicknav_menu {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* Hamburger Button - Clean minimal style */
  .slicknav_btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    top: auto !important;
    right: auto !important;
    float: none !important;
  }

  .slicknav_btn:hover,
  .slicknav_btn:focus {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  /* Dark mode - NO background on burger button */
  body.dark-mode .slicknav_btn {
    background: transparent !important;
  }

  body.dark-mode .slicknav_btn:hover,
  body.dark-mode .slicknav_btn:focus {
    background: transparent !important;
  }

  /* Hamburger Icon Container */
  .slicknav_icon {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
  }

  .slicknav_icon::before {
    display: none !important;
  }

  /* Hamburger Bars - WHITE on navy header */
  .slicknav_icon-bar {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 1px !important;
    margin: 2px 0 !important;
    transition: all 0.2s ease !important;
    position: relative !important;
  }

  body.dark-mode .slicknav_icon-bar {
    background: #e4e6eb !important;
  }

  /* Mobile Menu Dropdown - Navy background for light theme */
  .slicknav_nav {
    position: fixed !important;
    top: 64px !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    max-height: calc(100vh - 100px) !important;
    background: #040e27 !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    padding: 12px !important;
    margin: 0 !important;
    overflow-y: auto !important;
    z-index: 999 !important;
    border: none !important;
    float: none !important;
    clear: both !important;
  }

  body.dark-mode .slicknav_nav {
    background: #121620 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) !important;
  }

  /* Menu Items */
  .slicknav_nav ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  .slicknav_nav li {
    display: block !important;
    margin: 4px 0 !important;
    list-style: none !important;
  }

  /* Menu Links - White text on navy background */
  .slicknav_nav li a {
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    background: transparent !important;
  }

  body.dark-mode .slicknav_nav li a {
    color: rgba(255, 255, 255, 0.75) !important;
  }

  /* Hover state - subtle white background */
  .slicknav_nav li a:hover,
  .slicknav_nav li a:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
  }

  body.dark-mode .slicknav_nav li a:hover,
  body.dark-mode .slicknav_nav li a:focus {
    background: #fac800 !important;
    color: #121620 !important;
  }

  /* Row hover - light theme */
  .slicknav_nav .slicknav_row:hover,
  .slicknav_nav .slicknav_row:hover .slicknav_arrow {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
  }

  /* Dark mode row hover - orange with dark text */
  body.dark-mode .slicknav_nav .slicknav_row:hover,
  body.dark-mode .slicknav_nav .slicknav_row:hover .slicknav_arrow {
    background: #fac800 !important;
    color: #121620 !important;
  }

  /* Active state */
  .slicknav_nav li a:active {
    transform: scale(0.98) !important;
  }

  /* Hide slicknav text */
  .slicknav_menutxt {
    display: none !important;
  }

  /* Container padding */
  .header-area .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Theme toggle position on mobile */
  .theme-toggle {
    bottom: 20px !important;
    right: 20px !important;
    width: 48px !important;
    height: 48px !important;
  }
}

/* ===== SMALL MOBILE SCREENS ===== */
@media (max-width: 575px) {
  .header-area .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-area .main-header-area {
    padding: 10px 0 !important;
  }

  .header-area .logo .logo-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .slicknav_btn {
    width: 38px !important;
    height: 38px !important;
    border-radius: 8px !important;
  }

  .slicknav_icon-bar {
    width: 16px !important;
  }

  .slicknav_nav {
    top: 56px !important;
    left: 12px !important;
    right: 12px !important;
    padding: 6px !important;
    border-radius: 12px !important;
  }

  .slicknav_nav li a {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
  }

  .theme-toggle {
    bottom: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }
}

/* ===== VERY SMALL SCREENS ===== */
@media (max-width: 375px) {
  .header-area .logo .logo-icon {
    width: 26px !important;
    height: 26px !important;
  }

  .slicknav_nav li a {
    padding: 11px 14px !important;
    font-size: 0.875rem !important;
  }
}

/* ===== SMOOTH SCROLL INDICATOR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #040e27, #1a2744);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* Dark mode - gold scroll progress */
body.dark-mode .scroll-progress {
  background: linear-gradient(90deg, #fac800, #ffd740);
}

/* ===== NAVIGATION ANIMATIONS ===== */
@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-area .main-menu nav ul li {
  animation: navFadeIn 0.5s ease forwards;
  opacity: 0;
}

.header-area .main-menu nav ul li:nth-child(1) { animation-delay: 0.1s; }
.header-area .main-menu nav ul li:nth-child(2) { animation-delay: 0.15s; }
.header-area .main-menu nav ul li:nth-child(3) { animation-delay: 0.2s; }
.header-area .main-menu nav ul li:nth-child(4) { animation-delay: 0.25s; }
.header-area .main-menu nav ul li:nth-child(5) { animation-delay: 0.3s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .header-area,
  .header-area .main-header-area,
  .header-area .logo a,
  .header-area .logo h1,
  .header-area .main-menu nav ul li a,
  .header-area .main-menu nav ul li a::after,
  .theme-toggle,
  .nav-indicator {
    transition: none !important;
  }

  .header-area .main-menu nav ul li {
    animation: none !important;
    opacity: 1;
  }
}

/* ===== FOCUS STATES FOR ACCESSIBILITY ===== */
.header-area .main-menu nav ul li a:focus-visible,
.header-area .logo a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.theme-toggle:focus-visible {
  outline: 2px solid #040e27;
  outline-offset: 2px;
}

body.dark-mode .header-area .main-menu nav ul li a:focus-visible,
body.dark-mode .header-area .logo a:focus-visible,
body.dark-mode .theme-toggle:focus-visible {
  outline-color: #fac800;
}

/* ===== DARK MODE MOBILE MENU HOVER - FINAL OVERRIDE ===== */
body.dark-mode .slicknav_menu .slicknav_nav a:hover,
body.dark-mode .slicknav_menu .slicknav_nav a:focus,
body.dark-mode .slicknav_menu .slicknav_nav li a:hover,
body.dark-mode .slicknav_menu .slicknav_nav li a:focus,
body.dark-mode .mobile_menu .slicknav_menu .slicknav_nav a:hover,
body.dark-mode .mobile_menu .slicknav_menu .slicknav_nav a:focus {
  background: #fac800 !important;
  color: #121620 !important;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header-area {
    position: relative;
    background: #fff !important;
    box-shadow: none !important;
  }

  .theme-toggle {
    display: none !important;
  }
}
