/**
 * Custom Theme for Synology QuickConnect
 * Unique design for search engine optimization
 */

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/

:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Outfit", sans-serif;
  --nav-font: "Plus Jakarta Sans", sans-serif;
}

:root {
  --background-color: #f8fafc;
  --default-color: #334155;
  --heading-color: #0f172a;
  --accent-color: #2563eb;
  --accent-secondary: #1e40af;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --border-color: #e2e8f0;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

:root {
  --nav-color: #0f172a;
  --nav-hover-color: #2563eb;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #334155;
  --nav-dropdown-hover-color: #2563eb;
}

.light-background {
  --background-color: #f1f5f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f172a;
  --default-color: #94a3b8;
  --heading-color: #f8fafc;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2563eb;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #1e40af;
  --contrast-color: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--accent-secondary);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  transition: all 0.3s;
  z-index: 997;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
}

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

.header .container-fluid {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .logo {
  flex-shrink: 0;
}

.header .logo h1 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.5px;
  margin: 0;
}

.header .navmenu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header .navmenu ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.header .navmenu ul li a {
  color: var(--nav-color);
  padding: 10px 18px;
  font-size: 15px;
  font-family: var(--nav-font);
  font-weight: 500;
  transition: 0.3s;
  border-radius: 8px;
  display: block;
}

.header .navmenu ul li a:hover,
.header .navmenu ul li a.active {
  color: #2563eb;
  background: #eff6ff;
}

/* Mobile navigation */
@media (max-width: 991px) {
  .header .navmenu {
    position: relative;
  }

  .header .navmenu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 8px;
    border: 1px solid var(--border-color);
  }

  .header .navmenu ul.show {
    display: block;
  }

  .header .navmenu ul li {
    width: 100%;
  }

  .header .navmenu ul li a {
    padding: 14px 20px;
    font-size: 16px;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--nav-color);
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
  }
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

.scrolled .header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #94a3b8;
  font-size: 14px;
  padding-bottom: 40px;
}

.footer h4 {
  color: #f8fafc;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer .footer-about .logo span {
  font-size: 24px;
  font-weight: 700;
  color: #f8fafc;
  font-family: var(--heading-font);
}

.footer .footer-links ul a {
  color: #94a3b8;
  padding: 8px 0;
  display: block;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #2563eb;
  padding-left: 5px;
}

.footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #2563eb;
  transform: translateY(-3px);
}

.footer .footer-about p {
  color: #94a3b8;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 100px 0;
  text-align: center;
}

.page-title h1 {
  color: #f8fafc;
  font-size: 42px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  justify-content: center;
  font-size: 15px;
}

.page-title .breadcrumbs ol a {
  color: #94a3b8;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  color: #64748b;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section, .section {
  padding: 80px 0;
}

/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  border-radius: 2px;
}

.section-title p {
  color: #64748b;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: calc(100vh - 80px);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(30, 64, 175, 0.85) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.hero .btn-get-started {
  color: #2563eb;
  background: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 40px;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 30px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .btn-get-started:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero .icon-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border-color);
}

.hero .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.hero .icon-box .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: #2563eb;
}

.hero .icon-box .title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 17px;
}

.hero .icon-box .title a {
  color: var(--heading-color);
}

.hero .icon-box .description {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 36px;
  }
  .hero p {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: var(--card-shadow);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.services .service-item .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdfa 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .service-item .icon i {
  font-size: 32px;
  color: #2563eb;
}

.services .service-item h3 {
  font-weight: 600;
  margin: 0 0 15px;
  font-size: 20px;
}

.services .service-item p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.services .service-item.item-cyan:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.services .service-item.item-cyan:hover h3,
.services .service-item.item-cyan:hover p {
  color: #ffffff;
}

.services .service-item.item-cyan:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}

.services .service-item.item-cyan:hover .icon i {
  color: #ffffff;
}

.services .service-item.item-orange:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.services .service-item.item-orange:hover h3,
.services .service-item.item-orange:hover p {
  color: #ffffff;
}

.services .service-item.item-orange:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}

.services .service-item.item-orange:hover .icon i {
  color: #ffffff;
}

.services .service-item.item-teal:hover {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.services .service-item.item-teal:hover h3,
.services .service-item.item-teal:hover p {
  color: #ffffff;
}

.services .service-item.item-teal:hover .icon {
  background: rgba(255, 255, 255, 0.2);
}

.services .service-item.item-teal:hover .icon i {
  color: #ffffff;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  min-height: 300px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: -30px auto 0;
  border: 4px solid #2563eb;
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 15px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #2563eb;
  font-size: 24px;
}

.testimonials .testimonial-item p {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 16px;
  font-style: italic;
  color: #475569;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--border-color);
  border: 2px solid #2563eb;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: #2563eb;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
}

.faq .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq .faq-item {
  background: var(--surface-color);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq .faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  flex: 1;
}

.faq .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq .faq-icon i {
  font-size: 16px;
  color: #2563eb;
}

.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq .faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

.faq .faq-active {
  border-color: #2563eb;
}

.faq .faq-active .faq-icon {
  background: #2563eb;
}

.faq .faq-active .faq-icon i {
  color: #ffffff;
}

.faq .faq-active .faq-question h3 {
  color: #2563eb;
}

/*--------------------------------------------------------------
# Comparison Table
--------------------------------------------------------------*/
.comparison-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  background: var(--surface-color);
}

.comparison-table thead th {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  text-transform: none;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 20px;
}

.comparison-table tbody td {
  padding: 18px 20px;
  border-top: 1px solid var(--border-color);
  vertical-align: middle;
}

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--heading-color);
}

.comparison-table .best-choice {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px;
  display: inline-block;
  font-size: 14px;
}

.comparison-table .compare-cell {
  font-size: 14px;
  color: #475569;
}

/*--------------------------------------------------------------
# About / Deep Dive Section
--------------------------------------------------------------*/
.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 10px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about .read-more:hover {
  background: var(--accent-secondary);
  transform: translateX(5px);
}

.about .read-more i {
  font-size: 18px;
  transition: 0.3s;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about ul i {
  font-size: 18px;
  color: #2563eb;
  background: #eff6ff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.card {
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: 0.3s;
  background: var(--surface-color);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.card .card-body {
  padding: 25px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-title a {
  color: var(--heading-color);
}

.card-title a:hover {
  color: var(--accent-color);
}

.card-text {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# Alert
--------------------------------------------------------------*/
.alert-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  border-radius: 12px;
  padding: 20px;
}

.alert-warning {
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  border-radius: 12px;
  padding: 20px;
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid var(--border-color);
  background: var(--surface-color);
  transition: 0.3s;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
  padding: 14px 35px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/*--------------------------------------------------------------
# Scroll Top
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #2563eb;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  transition: all 0.4s;
  cursor: pointer;
}

.scroll-top i {
  color: #ffffff;
  font-size: 20px;
  line-height: 0;
}

.scroll-top:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  max-width: 500px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--hover-shadow);
  padding: 20px;
  z-index: 9999;
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

.cookie-btn {
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
  font-size: 14px;
}

.cookie-accept {
  background: #2563eb;
  color: #ffffff;
  border: none;
}

.cookie-accept:hover {
  background: #1e40af;
}

.cookie-later {
  background: transparent;
  color: #64748b;
  border: 1px solid var(--border-color);
}

.cookie-later:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.cookie-banner .d-flex {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.cookie-banner h4 {
  margin: 0 0 5px;
  font-size: 16px;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 4px solid #e2e8f0;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# PHP Email Form
--------------------------------------------------------------*/
.php-email-form .error-message {
  background: #dc2626;
  color: #ffffff;
  border-radius: 8px;
}

.php-email-form .sent-message {
  background: #16a34a;
  color: #ffffff;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats .stats-item span {
  font-size: 48px;
  color: #2563eb;
  font-weight: 700;
}

.stats .stats-item p {
  color: #64748b;
  font-size: 15px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 768px) {
  section, .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .page-title h1 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .comparison-table {
    border-radius: 12px;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody tr {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
  }

  .comparison-table tbody td {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border: none;
  }

  .comparison-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--heading-color);
  }
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.hidden {
  display: none !important;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .navmenu ul.show {
    display: block;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
  }
}

/*--------------------------------------------------------------
# Additional Utilities
--------------------------------------------------------------*/
.text-accent {
  color: var(--accent-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.border-accent {
  border-color: var(--accent-color) !important;
}

.rounded-xl {
  border-radius: 16px;
}

.shadow-xl {
  box-shadow: var(--hover-shadow);
}

.transition-all {
  transition: all 0.3s ease;
}
