/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Poppins", sans-serif;

  /* Animation Variables */
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #202754;
  --accent-color: #e87929;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #202754;
  --nav-hover-color: #e87929;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #212529;
  --nav-dropdown-hover-color: #e87929;
}

/* Color Presets */
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
  --accent-color: #ff8c42;
  /* Brighter orange for dark mode */
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

a:hover {
  color: #d96b24;
  /* Darker shade of your orange */
}

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

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
/* 1. Page Load Fade-In */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn var(--transition-slow) ease-out forwards;
}

/* 2. Gentle Hover Lift */
.animate-lift {
  transition: transform var(--transition-medium) ease, box-shadow var(--transition-medium) ease;
}

.animate-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(32, 39, 84, 0.1);
  /* Using your blue color at 10% opacity */
}

/* 3. Accented Underline */
.animate-underline {
  position: relative;
}

.animate-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: width var(--transition-medium) ease;
}

.animate-underline:hover::after {
  width: 100%;
}

/* 4. Subtle Pulse */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

.animate-pulse:hover {
  animation: pulse 2s infinite ease-in-out;
}

/* 5. Background Fill (For buttons) */
.animate-fill {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animate-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  transition: left var(--transition-medium) ease;
  z-index: -1;
}

.animate-fill:hover::before {
  left: 0;
}

.animate-fill:hover {
  color: var(--contrast-color);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all var(--transition-slow) ease;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0 2px 15px rgba(32, 39, 84, 0.05);
  /* Using your blue color */
}

.header .logo {
  line-height: 1;
  transition: transform var(--transition-medium) ease;
}

.header .logo:hover {
  transform: translateX(5px);
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
  transition: transform var(--transition-medium) ease;
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  transition: color var(--transition-fast) ease;
}

.header .logo:hover h1 {
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: all var(--transition-medium) ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
}

.header .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow) ease;
  z-index: -1;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 121, 41, 0.3);
  /* Using your orange color */
}

.header .btn-getstarted:hover::before {
  left: 100%;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

/* Index Page Header */
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  box-shadow: none;
}

/* Index Page Header on Scroll */
.index-page.scrolled .header {
  --background-color: #ffffff;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
    padding: 5px 0;
    /* Keep the vertical padding on the list item */
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 20px;
    /* Reduced top/bottom padding on the anchor */
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all var(--transition-fast) ease;
    position: relative;
  }

  .navmenu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    /* Moved the underline closer to the bottom of the anchor */
    left: 20px;
    /* Match the left padding of the anchor */
    background-color: var(--accent-color);
    transition: width var(--transition-medium) ease;
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    width: calc(100% - 40px);
    /* Adjust width to account for padding */
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: transform var(--transition-medium) ease;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

  .navmenu .dropdown:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 120%;
    opacity: 0;
    transition: all var(--transition-medium) ease;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 8px 20px;
    /* Further reduced top/bottom padding on the dropdown anchor */
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    transition: all var(--transition-fast) ease;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    padding-left: 25px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all var(--transition-medium) ease;
  }

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    /* Use mobile background color */
    overflow-y: auto;
    transition: all var(--transition-medium) ease;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    /* Use dropdown link color */
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all var(--transition-fast) ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-medium) ease;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    /* Use dropdown link hover color */
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    /* Initially hidden */
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    /* Use dropdown background color */
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all var(--transition-medium) ease-in-out;
  }

  .navmenu .dropdown ul li a {
    color: var(--nav-dropdown-color);
    /* Use dropdown link color */
  }

  .navmenu .dropdown ul li a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    /* Use dropdown link hover color */
    padding-left: 25px;
  }

  .navmenu .dropdown ul ul {
    background-color: var(--nav-dropdown-background-color);
    /* Make nested dropdown background same as parent */
  }

  .navmenu .dropdown.active>ul.dropdown-active {
    /* Target the ul with dropdown-active when the parent li has active */
    display: block;
    opacity: 1;
    /* Ensure it's visible */
    transform: translateY(0);
    /* Reset any transform that might hide it */
    visibility: visible;
    /* Ensure it's visible */
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
    transform: rotate(90deg);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: all var(--transition-medium) ease;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Global Footer - Modified (Newsletter Style)
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  /* Removed default background */
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  /* Newsletter background */
  font-size: 14px;
  padding-bottom: 50px;
  /* padding-top: 50px; */
  /* Consider adding top padding if needed */
  position: relative;
  transition: all var(--transition-slow) ease;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  /* Newsletter top border */
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  /* Newsletter bottom border */
  padding-top: 50px;
  /* Added padding-top to match newsletter */
  padding-bottom: 50px;
  /* Ensured consistent vertical padding */
}

/* Newsletter Section - Removed */

/* Footer Top Section */
.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-top>.row>div {
  animation: fadeIn var(--transition-slow) ease forwards;
  opacity: 0;
}

.footer .footer-top>.row>div:nth-child(1) {
  animation-delay: 0.1s;
}

.footer .footer-top>.row>div:nth-child(2) {
  animation-delay: 0.2s;
}

.footer .footer-top>.row>div:nth-child(3) {
  animation-delay: 0.3s;
}

.footer .footer-top>.row>div:nth-child(4) {
  animation-delay: 0.4s;
}

/* Social Links */
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: all var(--transition-medium) ease;
  transform: translateY(0);
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 8px rgba(232, 121, 41, 0.2);
  /* Using your orange color */
}

/* Footer Headings */
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  transition: width var(--transition-medium) ease;
}

.footer h4:hover::after {
  width: 50px;
}

/* Footer Links */
.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
  transition: transform var(--transition-fast) ease;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all var(--transition-fast) ease;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li:hover i {
  transform: translateX(3px);
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
  transition: all var(--transition-fast) ease;
  position: relative;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

/* Footer About */
.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: all var(--transition-medium) ease;
  display: inline-block;
}

.footer .footer-about a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  transition: all var(--transition-fast) ease;
}

.footer .footer-contact p:hover {
  color: var(--heading-color);
}

/* Copyright */
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--accent-color);
  transition: all var(--transition-fast) ease;
}

.footer .credits a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all var(--transition-medium) cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 4px 12px rgba(232, 121, 41, 0.3);
  /* Using your orange color */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
  transition: transform var(--transition-fast) ease;
}

.scroll-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 16px rgba(232, 121, 41, 0.4);
}

.scroll-top:hover i {
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Pulse Animation (optional) */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 121, 41, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(232, 121, 41, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 121, 41, 0);
  }
}

.scroll-top.pulse {
  animation: pulse 2s infinite;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  transition: all var(--transition-medium) ease;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: fadeInUp var(--transition-slow) ease;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.page-title .heading h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  transition: width var(--transition-medium) ease;
}

.page-title .heading:hover h1::after {
  width: 100%;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li {
  transition: transform var(--transition-fast) ease;
}

.page-title nav ol li:hover {
  transform: translateX(3px);
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
  position: relative;
}

section::before,
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--background-color), transparent 100%) 0%,
      color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);
  transition: all var(--transition-medium) ease;
  transform: translateY(0);
}

.section-title:hover h2 {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  position: relative;
  display: inline-block;
}

.section-title p::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
  transform: translateX(-50%);
  transition: width var(--transition-medium) ease;
}

.section-title:hover p::after {
  width: 80px;
}

.section-title p .description-title {
  color: var(--accent-color);
  position: relative;
}

.section-title p .description-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium) ease;
}

.section-title:hover p .description-title::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Global Transition Variables */
:root {
  --transition-fast: 0.2s;
  --transition-medium: 0.3s;
  --transition-slow: 0.5s;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero p {
  color: #666;
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.3s;
  color: var(--default-color);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
  transform: scale(1.05);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .hero-img img {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 50px;
  border-radius: 4px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about .content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about .content p {
  margin: 15px 0 30px 0;
  line-height: 1.7;
  color: var(--default-color);
  font-size: 16px;
}

.about .content .btn-read-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.about .content .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: transform 0.3s ease-in-out;
}

.about .content .btn-read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.about .content .btn-read-more:hover i {
  transform: translateX(5px);
}

.about .col-lg-6:last-child {
  padding-left: 30px;
}

.about .col-lg-6 img {
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .about .col-lg-6:last-child {
    padding-left: 0;
    margin-top: 30px;
  }

  .about .content {
    padding: 30px;
  }

  .about .content h2 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Values Section
--------------------------------------------------------------*/
.values .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
  height: 100%;
  border: 0;
}

.values .card img {
  padding: 30px 50px;
  transition: 0.5s;
  transform: scale(1.1);
}

.values .card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.values .card:hover {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.values .card:hover img {
  transform: scale(1);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 60px 0;
  /* Add some vertical padding to the section */
}

.features .feature-box {
  padding: 30px 25px;
  /* Adjust padding for better spacing inside the box */
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
  /* Softer initial shadow */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* Smooth transitions */
  height: 100%;
  border-radius: 8px;
  /* Slightly rounded corners */
  background-color: var(--surface-color);
  /* Ensure a background color */
}

.features .feature-box:hover {
  transform: translateY(-5px);
  /* Subtle lift on hover */
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  /* More pronounced shadow on hover */
}

.features .feature-box h3 {
  font-size: 20px;
  /* Slightly larger heading */
  font-weight: 700;
  color: var(--heading-color);
  /* Use heading color */
  margin-bottom: 10px;
  /* Add some spacing below the heading */
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  /* Slightly less transparent background */
  color: var(--accent-color);
  line-height: 1;
  /* Adjust line height for better icon alignment */
  padding: 8px;
  /* Slightly larger padding for the icon */
  margin-right: 15px;
  /* Add more spacing between icon and text */
  font-size: 28px;
  /* Slightly larger icon */
  border-radius: 6px;
  /* Slightly more rounded corners for the icon */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  /* Smooth icon transition */
  display: inline-flex;
  /* Use flex to align icon and text vertically */
  align-items: center;
  justify-content: center;
  width: 40px;
  /* Fixed width for the icon container */
  height: 40px;
  /* Fixed height for the icon container */
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Services Section - Modified (Attempt 4 - Zoom IN Animation)
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  border-radius: 5px;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.15);
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.services .service-item:hover .icon {
  background-color: var(--contrast-color);
  color: inherit;
  transform: scale(1.1);
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item p {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.services .service-item:hover p {
  color: var(--default-color);
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease-in-out;
  /* Added transform transition */
}

.services .service-item:hover .read-more {
  color: var(--accent-color);
  transform: scale(1.2);
  /* Subtle zoom IN on hover */
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

/* Color Variations - Using CSS Variables */
:root {
  --cyan: #0dcaf0;
  --orange: #fd7e14;
  --teal: #20c997;
  --red: #df1529;
  --indigo: #6610f2;
  --pink: #f3268c;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid var(--cyan);
}

.services .service-item.item-cyan .icon {
  color: var(--cyan);
  background-color: color-mix(in srgb, var(--cyan), transparent 90%);
}

.services .service-item.item-orange {
  border-bottom: 3px solid var(--orange);
}

.services .service-item.item-orange .icon {
  color: var(--orange);
  background-color: color-mix(in srgb, var(--orange), transparent 90%);
}

.services .service-item.item-teal {
  border-bottom: 3px solid var(--teal);
}

.services .service-item.item-teal .icon {
  color: var(--teal);
  background-color: color-mix(in srgb, var(--teal), transparent 90%);
}

.services .service-item.item-red {
  border-bottom: 3px solid var(--red);
}

.services .service-item.item-red .icon {
  color: var(--red);
  background-color: color-mix(in srgb, var(--red), transparent 90%);
}

.services .service-item.item-indigo {
  border-bottom: 3px solid var(--indigo);
}

.services .service-item.item-indigo .icon {
  color: var(--indigo);
  background-color: color-mix(in srgb, var(--indigo), transparent 90%);
}

.services .service-item.item-pink {
  border-bottom: 3px solid var(--pink);
}

.services .service-item.item-pink .icon {
  color: var(--pink);
  background-color: color-mix(in srgb, var(--pink), transparent 90%);
}

/*--------------------------------------------------------------
# Faq Section - Modified
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: color 0.3s ease;
  /* Only transition color */
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out, opacity 0.3s ease-in-out;
  /* Added opacity transition */
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: transform 0.3s ease, color 0.3s ease;
  /* Transition transform and color */
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg) scale(1.1);
  /* Added slight scale */
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section - Modified
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: color 0.3s ease-in-out;
  /* Only color transition for filters */
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li:focus,
/* Added focus style */
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: transform 0.3s ease-in-out;
  /* Added ease-in-out */
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: opacity ease-in-out 0.3s, transform 0.3s ease-out;
  /* Added transform transition */
  background: rgba(0, 0, 0, 0.7);
  /* Slightly more opaque */
  padding: 15px;
  transform: translateY(10px);
  /* Start slightly below */
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
  /* Slide in */
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
  margin-bottom: 5px;
  /* Added some margin */
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  /* Slightly more opaque */
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 18px);
  /* Adjusted vertical centering */
  color: #fff;
  transition: color 0.3s ease;
  line-height: 1;
  /* Adjusted line-height */
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  margin-left: 10px;
  /* Adjusted spacing */
  font-size: 30px;
  /* Slightly smaller */
  line-height: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.05);
  /* More subtle scale */
}

/*--------------------------------------------------------------
# Testimonials Section - Modified
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* Changed to border-box for easier padding management */
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* Added transform and shadow transition */
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto 15px auto;
  /* Added margin below image */
  transition: border-color 0.3s ease-in-out;
}

.testimonials .testimonial-item:hover .testimonial-img {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--heading-color);
  /* Ensure heading color */
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  /* Slightly darker */
  margin: 0 0 10px 0;
  /* Added bottom margin */
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: var(--default-color);
  /* Ensure paragraph color */
}

.testimonials .swiper-wrapper {
  height: auto;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  /* More dynamic transition */
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  /* Slightly darker inactive */
  opacity: 0.7;
  /* Slightly less opaque inactive */
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
  transform: scale(1.1);
  /* Slightly larger active bullet */
}

.testimonials .swiper-slide {
  opacity: 0.4;
  /* Slightly more visible inactive slides */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    /* Reset scale on mobile */
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.05);
    /* More subtle scale */
  }

  .testimonials .swiper-slide-active {
    transform: scale(1.08);
    /* Slightly larger active slide */
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Team Section - Modified
--------------------------------------------------------------*/
.team .team-member {
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* Added box-shadow transition */
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-img::after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
  transition: background-color 0.3s ease-in-out;
  /* Added transition to background */
}

.team .team-member:hover .member-img::after {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  /* Subtle accent color on hover */
}

.team .team-member .social {
  position: absolute;
  right: 15px;
  /* Slightly visible initially */
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: right 0.3s ease-out, opacity 0.3s ease-out;
  /* Faster, ease-out transition */
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  /* Slightly more opaque */
  z-index: 2;
  padding: 8px 0;
  /* Add some padding for better touch targets */
}

.team .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

.team .team-member .social a {
  transition: color 0.3s ease;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  /* Slightly darker initial color */
  margin: 10px 12px;
  /* Reduced vertical margin */
  display: block;
  line-height: 0;
  text-align: center;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
  /* Use accent color on hover */
}

.team .team-member .social i {
  font-size: 18px;
}

.team .team-member .member-info {
  padding: 15px;
  /* More consistent padding */
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--heading-color);
  /* Ensure heading color */
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  /* Slightly darker */
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 10px;
  /* Reduced top padding */
  line-height: 24px;
  /* Slightly tighter */
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  /* Slightly darker */
}

.team .team-member:hover {
  transform: scale(1.05);
  /* More subtle scale */
}

/*--------------------------------------------------------------
# Clients Section - Modified
--------------------------------------------------------------*/
.clients .swiper-slide {
  display: flex;
  /* To center the image within the slide */
  justify-content: center;
  align-items: center;
  max-height: 120px;
  /* Adjust as needed */
}

.clients .swiper-slide img {
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  /* Added filter transition */
  opacity: 0.6;
  /* Slightly more visible inactive state */
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Preserve aspect ratio */
  filter: grayscale(80%);
  /* Subtle grayscale for inactive */
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  /* Remove grayscale on hover */
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
  text-align: center;
  /* Center the pagination */
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 0.7;
  /* Slightly less opaque inactive */
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  /* Slightly darker inactive */
  border-radius: 50%;
  /* Make them circular */
  margin: 0 5px;
  /* Add some spacing */
  cursor: pointer;
  /* Indicate interactivity */
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
  transform: scale(1.1);
  /* Slightly larger active bullet */
}

/*--------------------------------------------------------------
# Contact Section - Modified (Button like Get Started - Final) - Zoom Hover Icons
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--surface-color), transparent 90%);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-fast) ease-in-out;
  /* Add transition to the container */
}

.contact .info-item:hover {
  transform: translateY(-3px);
  /* Slight lift on hover */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  /* Slightly more prominent shadow */
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 15px;
  transition: transform var(--transition-fast) ease-in-out;
  /* Transition for the icon itself */
}

.contact .info-item:hover i {
  /* color: var(--heading-color); /* Removed color change on hover */
  transform: scale(1.1);
  /* Slight scale up on hover for zoom effect */
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--surface-color), transparent 90%);
  padding: 30px;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
  position: relative;
  /* For positioning the icon */
}

.contact .php-email-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 4px;
  color: var(--default-color);
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  /* Space for the icon */
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 5px rgba(var(--accent-color-rgb), 0.2);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 8px 25px;
  margin: 0;
  /* Reset any potential margins */
  border-radius: 4px;
  transition: all var(--transition-medium) ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  /* Ensure cursor is a pointer */
}

.contact .php-email-form button[type=submit]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow) ease;
  z-index: -1;
}

.contact .php-email-form button[type=submit]:hover,
.contact .php-email-form button[type=submit]:focus {
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 121, 41, 0.3);
  /* Using your orange color */
  outline: none;
  /* Remove default focus outline */
}

.contact .php-email-form button[type=submit]:hover::before,
.contact .php-email-form button[type=submit]:focus::before {
  left: 100%;
}

/* Icons for Form Fields */
.contact .php-email-form .form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  transition: color var(--transition-fast) ease-in-out;
}

.contact .php-email-form input[type=text]:focus+i,
.contact .php-email-form input[type=email]:focus+i,
.contact .php-email-form textarea:focus+i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section - Modified
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider {
  overflow: hidden;
  /* To contain images with object-fit */
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  display: block;
  /* Prevent extra space below image */
  object-fit: cover;
  /* Or contain, depending on your preference */
  max-height: 600px;
  /* Adjust as needed */
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
  text-align: center;
  /* Center pagination */
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  /* Slightly darker inactive */
  opacity: 0.7;
  /* Slightly less opaque inactive */
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
  transform: scale(1.1);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  /* Added border-radius for consistency */
  margin-top: 20px;
  /* Added top margin to separate from slider */
}

.portfolio-details .portfolio-info h3 {
  font-size: 24px;
  /* Slightly larger title */
  font-weight: 700;
  margin-bottom: 15px;
  /* Reduced bottom margin */
  padding-bottom: 15px;
  /* Reduced bottom padding */
  border-bottom: 1px solid var(--border-color);
  /* Using a potential border color variable */
  color: var(--heading-color);
  /* Ensure heading color */
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  /* Slightly larger font */
  color: var(--default-color);
  /* Ensure default text color */
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 8px;
  /* Slightly reduced margin */
}

.portfolio-details .portfolio-info ul li strong {
  font-weight: 600;
  /* Make info labels bolder */
  color: var(--heading-color);
  /* Use heading color for labels */
  margin-right: 5px;
}

.portfolio-details .portfolio-description {
  padding-top: 40px;
  /* Increased top padding */
}

.portfolio-details .portfolio-description h2 {
  font-size: 28px;
  /* Slightly larger heading */
  font-weight: 700;
  margin-bottom: 15px;
  /* Reduced bottom margin */
  color: var(--heading-color);
  /* Ensure heading color */
}

.portfolio-details .portfolio-description p {
  padding: 0;
  line-height: 26px;
  /* Improved readability */
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  /* Slightly darker description text */
}

/*--------------------------------------------------------------
# Service Details Section - Modified
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 25px;
  /* Slightly increased padding */
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  /* Added border-radius */
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
  /* Using a potential border color variable */
  padding-bottom: 12px;
  /* Slightly reduced padding */
  margin-bottom: 18px;
  /* Slightly increased margin */
  color: var(--heading-color);
  /* Ensure heading color */
}

.service-details .services-list {
  background-color: var(--surface-color);
  border-radius: 4px;
  /* Added border-radius */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  /* Slightly darker initial color */
  background-color: transparent;
  /* Cleaner initial background */
  display: flex;
  align-items: center;
  padding: 10px 15px;
  /* Slightly reduced padding */
  margin-top: 0;
  /* Remove top margin, will handle with border */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  /* Added bottom border */
}

.service-details .services-list a:first-child {
  border-top-left-radius: 4px;
  /* Rounded top for first item */
  border-top-right-radius: 4px;
}

.service-details .services-list a:last-child {
  border-bottom: none;
  /* Remove bottom border for last item */
  border-bottom-left-radius: 4px;
  /* Rounded bottom for last item */
  border-bottom-right-radius: 4px;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 10px;
  /* Slightly increased margin */
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  /* Slightly darker hover */
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 12px 0;
  /* Slightly increased padding */
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  /* Added border-color transition */
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 10px;
  /* Slightly increased margin */
  color: var(--accent-color);
}

.service-details .download-catalog a span {
  flex-grow: 1;
  /* Push icon to the left */
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  /* Change border color on hover */
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 20px;
  /* Slightly increased horizontal padding */
  border-radius: 4px;
  /* Added border-radius */
}

.service-details .help-box .help-icon {
  font-size: 48px;
  margin-bottom: 15px;
  /* Added margin below icon */
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 25px;
  /* Slightly increased margin */
  border-radius: 4px;
  /* Added border-radius */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
}

.service-details h3 {
  font-size: 28px;
  /* Slightly larger heading */
  font-weight: 700;
  color: var(--heading-color);
  /* Ensure heading color */
  margin-bottom: 15px;
  /* Added margin */
}

.service-details p {
  font-size: 16px;
  /* Slightly larger text */
  line-height: 27px;
  /* Improved readability */
  color: var(--default-color);
  /* Ensure default text color */
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  /* Slightly larger text */
}

.service-details ul li {
  padding: 8px 0;
  /* Slightly increased padding */
  display: flex;
  align-items: center;
}

.service-details ul li:not(:last-child) {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  /* Added bottom border for list items */
}

.service-details ul i {
  font-size: 20px;
  margin-right: 10px;
  /* Slightly increased margin */
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Product Technical Specification Table
--------------------------------------------------------------*/
.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.product-spec-table thead {
  background-color: #202754;
  color: #ffffff;
}

.product-spec-table th,
.product-spec-table td {
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  text-align: left;
}

.product-spec-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.product-spec-table tbody tr:hover {
  background-color: #e6f2f5;
}

.product-spec-table th {
  font-weight: 600;
  font-size: 16px;
}

.product-spec-table td {
  font-size: 15px;
}

@media (max-width: 576px) {

  .product-spec-table th,
  .product-spec-table td {
    font-size: 14px;
    padding: 10px;
  }
}