
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Fonts */
:root {
  /* ---------------- Fonts (System Only) ---------------- */
  --default-font: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --main-font: "Montserrat";

  --heading-font: var(--main-font);
  --nav-font: var(--default-font);

  /* ---------------- Base Colors ---------------- */
  --background-color: #ffffff;
  --surface-color: #ffffff;
  --default-color: #333333;
  --heading-color: #111111;
  --contrast-color: #ffffff;

  /* ---------------- Brand / Accent ---------------- */
  --accent-color: #0e9ce1;       /* Modern blue */
  --accent-hover-color: #1f4492; /* Darker hover */

  /* ---------------- Navigation ---------------- */
  --nav-color: #1f2937;
  --nav-hover-color: var(--accent-color);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #1f2937;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #1f4492;

  /* ---------------- Interaction ---------------- */
  --link-hover-color: var(--accent-hover-color);

  /* ---------------- System ---------------- */
  scroll-behavior: smooth;
}

/* ---------------- Base Styling ---------------- */
body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

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

a:hover {
  color: var(--link-hover-color);
}

/* ---------------- Headings ---------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
}

/* ---------------- Light Theme ---------------- */
.light-background {
  --background-color: #f9fafb;
  --surface-color: #ffffff;
}

/* ---------------- Dark Theme ---------------- */
.dark-background {
  --background-color: #0f172a;
  --surface-color: #1e293b;
  --default-color: #e5e7eb;
  --heading-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #e5e7eb;
  --nav-mobile-background-color: #0f172a;
}

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

.php-email-form .sent-message {
  display: none;
  color:#fff;
  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 Styles */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .top-row .logo {
  text-decoration: none;
}

.header .social-links a {
  color: var(--heading-color);
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .social-links {
    padding-right: 40px;
  }
}

.header .search-form {
  position: relative;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  color: var(--heading-color);
  transition: 0.3s;
}

.header .search-form button:hover {
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .search-form {
    display: none;
  }
}

.header .nav-wrap {
  height: 90px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 15px;
  z-index: 9999;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-color);
  transition: color 0.3s;
}

.header .mobile-nav-toggle:hover {
  color: var(--accent-color);
}

/* Global Header on Scroll */
.scrolled .header {
  --background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .header .nav-wrap {
  height: 70px;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    padding-bottom: 5px !important;
    padding: 10px 15px;
    text-decoration: none;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }


  .navmenu li:hover>a:after,
  .navmenu .active:after {
    width: calc(100% - 40px);
  }

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

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

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

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

  .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: color 0.3s;
    display: block;
  }

  .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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-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: 0.3s;
    text-decoration: none;
  }

  .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: 0.3s;
    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);
  }

  .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;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

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

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Contact button animation */
.contact-blink {
  position: relative;
  overflow: hidden;
}

.contact-blink:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.contact-blink:hover:before {
  left: 100%;
}
/*--------------------------------------------------------------
# Global Footer - Dark Theme
--------------------------------------------------------------*/
.footer {
  color: #e0e0e0;
  background: #1a1a1a;
  font-size: 14px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-brand h1,
.footer .footer-brand .logo {
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-family: var(--heading-font);
  font-size: 26px;
  letter-spacing: 0.8px;
  color:#fff;
  background: linear-gradient(135deg, var(--accent-hover-color),#0c9fe2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-brand .tagline {
  color: rgba(224, 224, 224, 0.7);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

/* Newsletter Styles */
.footer .newsletter h6 {
  color:#fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.footer .subscribe-form {
  gap: 8px;
}

.footer .subscribe-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex: 1;
}

.footer .subscribe-form .form-control::placeholder {
  color: rgba(224, 224, 224, 0.5);
}

.footer .subscribe-form .form-control:focus {
  outline: none;
  border-color: var(--accent-hover-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.footer .subscribe-form .btn {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  background: var(--accent-hover-color);
  color:#fff;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
}

.footer .subscribe-form .btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Enhanced Social Links */
.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(224, 224, 224, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer .social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.footer .social-links a:hover {
  background-color: var(--accent-hover-color);
  color:#fff;
  transform: translateY(-3px);
  border-color: var(--accent-hover-color);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.footer .social-links a:hover::before {
  left: 100%;
}

.footer .social-links a i {
  font-size: 18px;
  z-index: 1;
  position: relative;
}

/* Links Grid Enhancements */
.footer .footer-links-grid h5 {
  color:#fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 8px;
}

.footer .footer-links-grid h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-hover-color);
  border-radius: 2px;
}

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

.footer .footer-links-grid ul li {
  margin-bottom: 12px;
  position: relative;
}

.footer .footer-links-grid ul li a {
  color: rgba(224, 224, 224, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.footer .footer-links-grid ul li a::before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-hover-color);
  font-weight: bold;
}

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

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Badge for Careers */
.footer .footer-links-grid .badge {
  background: linear-gradient(135deg, var(--accent-hover-color), var(--accent-color));
  color:#fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 8px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Enhanced CTA Section */
.footer .footer-cta h5 {
  color:#fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.footer .footer-cta .small {
  color: rgba(224, 224, 224, 0.7);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer .footer-cta .btn-primary {
  background: var(--accent-hover-color);
  color:#fff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Contact Info Styles */
.footer .contact-info {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .contact-item {
  color: rgba(224, 224, 224, 0.75);
  font-size: 14px;
  line-height: 1.4;
}

.footer .contact-item i {
  color: var(--accent-hover-color);
  font-size: 16px;
  min-width: 20px;
}

/* Footer Bottom Enhancements */
.footer .footer-bottom {
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: rgba(224, 224, 224, 0.6);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color:#fff;
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: rgba(224, 224, 224, 0.5);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: var(--accent-hover-color);
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

/* Payment Methods */
.footer .payment-methods {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer .payment-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(224, 224, 224, 0.5);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer .payment-icon:hover {
  color: var(--accent-hover-color);
  border-color: var(--accent-hover-color);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }
  
  .footer .footer-cta {
    text-align: center;
  }
  
  .footer .contact-info {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }
  
  .footer .row {
    text-align: center;
  }
  
  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }
  
  .footer .footer-links-grid .col-6 {
    margin-bottom: 30px;
  }
  
  .footer .footer-links-grid h5 {
    text-align: left;
  }
  
  .footer .footer-links-grid ul {
    text-align: left;
    display: inline-block;
  }
  
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer .subscribe-form {
    flex-direction: column;
  }
  
  .footer .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer .footer-links-grid .row {
    text-align: center;
  }
  
  .footer .footer-links-grid h5 {
    text-align: center;
  }
  
  .footer .footer-links-grid h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer .footer-links-grid ul {
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bar {
  width: 13px;
  height: 40px;
  background-color: var(--accent-hover-color);
  border-radius: 0.8rem;
  animation: scale-up4 1s ease-in-out infinite;
}

.bar:nth-child(2) {
  animation-delay: 0.2s;
}

.bar:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes scale-up4 {
  0%, 100% {
    transform: scaleY(0.6);
  }
  50% {
    transform: scaleY(1.4);
  }
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 20px 0;
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

.mini-stats .stat {
  font-size: 14px;
  color: #e0e0e0;
  transition: color 0.3s;
}

.mini-stats .stat i {
  color:#fff;
  margin-right: 5px;
}
.hero {
  position: relative;
  height: calc(100vh - 76px);
  width: 100%;
  overflow: hidden;
  background-color: #1a1a1a;
  display: flex;
  align-items: end;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 1;
}

.fac {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-top:25px;
  background: transparent;
}
  
.psweb-banner-left {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.psweb-mainTitle .psweb-heading span {
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--main-font);
  line-height: 1.2;
  margin-bottom: 15px;
  display: block;
  color:var(--background-color);
}

.psweb-banner-left .psweb-mainTitle .psweb-heading {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: var(--main-font);
  color:var(--contrast-color);
  width: 100%;
}

/* Achievements */
.psweb-bl-tb {
  border-left: 2px solid #0b9bdf;
  padding-left: 25px;
}

.psweb-bl-tb .psweb-sub-achv {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 9%);
  backdrop-filter: blur(6px);
  backdrop-filter: blur(5px);
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
  }

.psweb-bl-tb .psweb-sub-achv:hover {
  background: rgba(11, 155, 223, 0.25);
  transform: translateY(-3px);
}

.psweb-bl-tb .psweb-sub-achv i {
  font-size: 1.2rem;
  color: #0b99e3;
  margin-top: 3px;
}

.psweb-bl-tb .psweb-sub-achv span {
  font-size: 0.925rem;
  line-height: 1.6;
}

.psweb-scontent {
  width: 100%;
}

.psweb-scontent .psweb-icon-box {
  padding: 10px;
  border-radius: 10px;
  background-color: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 9%);
  backdrop-filter: blur(6px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}


.psweb-scontent .psweb-icon-box i {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.psweb-scontent .psweb-icon-box:hover i {
  color: #0b99e3 !important;
  transform: scale(1.1);
}

.psweb-scontent .description {
  color: var(--aifnmjmchg-html-bg-color);
  font-size: 14px;
  font-weight: 400;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
      height: auto;
      min-height: calc(100vh - 76px);
      padding: 40px 0;
  }
  
  .psweb-mainTitle .psweb-heading span {
      font-size: 2.5rem;
  }
  
  .psweb-banner-left .psweb-mainTitle .psweb-heading {
      font-size: 1.1rem;
  }
  
  .psweb-bl-tb {
      border-left: none;
      border-top: 2px solid #0b9bdf;
      padding-left: 0;
      padding-top: 25px;
      margin-top: 25px;
  }
  
  .psweb-scontent .row {
      margin: 0 -5px;
  }
  
  .psweb-scontent .col-6 {
      padding: 0 5px;
  }
}

@media (max-width: 576px) {
  .psweb-mainTitle .psweb-heading span {
      font-size: 2rem;
  }
  
  .psweb-banner-left .psweb-mainTitle .psweb-heading {
      font-size: 1rem;
  }
  
  .psweb-bl-tb .psweb-sub-achv {
      padding: 15px;
      font-size: 14px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  /* tokens */
  --card-radius: 16px;
  --soft-border: color-mix(in srgb, var(--default-color), transparent 88%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 28%);
  --muted-strong: color-mix(in srgb, var(--default-color), transparent 18%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 88%);
  --accent-softer: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.about .intro-card {
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 4px);
  padding:20px;
}

@media (max-width: 576px) {
  .about .intro-card {
    padding: 22px;
  }
}

.about .intro-card .intro-head {
  margin-bottom: 1rem;
}

.about .intro-card .intro-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent-color);
  background: var(--accent-softer);
}

.about .intro-card .intro-head h2 {
  margin-top: 12px;
  margin-bottom: 0.75rem;
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about .intro-card .intro-head h2 {
    font-size: 1.875rem;
  }
}

.about .intro-card .intro-body .lead {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: var(--bs-black);
}

.about .intro-card .intro-body p {
  color: var(--muted-text);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about .intro-card .feature-list {
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}

.about .intro-card .feature-list .feature-item {
  display: flex;
  gap: 14px;
  padding: 14px 14px;
  border: 1px dashed var(--soft-border);
  border-radius: var(--card-radius);
  background: color-mix(in srgb, var(--background-color), var(--surface-color) 50%);
  transition: all 0.3s ease;
}

.about .intro-card .feature-list .feature-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .intro-card .feature-list .feature-item i {
  flex: 0 0 44px;
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  background: var(--accent-soft);
  font-size: 18px;
}

.about .intro-card .feature-list .feature-item .text h6 {
  margin: 0 0 4px 0;
  font-size: 1rem;
  font-weight: 500;
}

.about .intro-card .feature-list .feature-item .text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-text);
}

.about .intro-card .metric-band {
  margin: 18px 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border: 1px solid var(--soft-border);
  border-radius: calc(var(--card-radius) + 2px);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band {
    gap: 12px;
    padding: 12px;
  }
}

.about .intro-card .metric-band .metric {
  display: grid;
  gap: 2px;
}

.about .intro-card .metric-band .metric .value {
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--accent-color);
  font-size: 1.75rem;
  line-height: 1;
}

.about .intro-card .metric-band .metric .label {
  font-size: 0.8rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about .intro-card .metric-band .divider {
  width: 1px;
  height: 34px;
  background: var(--soft-border);
}

@media (max-width: 576px) {
  .about .intro-card .metric-band .divider {
    height: 28px;
  }
}

.about .intro-card .actions .btn.btn-accent {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}

.about .intro-card .actions .btn.btn-accent:hover {
  background: color-mix(in srgb, var(--accent-color), black 14%);
  border-color: color-mix(in srgb, var(--accent-color), black 14%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--accent-color), transparent 62%);
}

.about .intro-card .actions .link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
}

.about .intro-card .actions .link-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about .intro-card .actions .link-more:hover {
  color: var(--accent-color);
}

.about .intro-card .actions .link-more:hover::after {
  transform: scaleX(1);
}

.about .showcase {
  height: 100%;
  display: grid;
  gap: 16px;
  grid-template-rows: 1fr auto;
}

.about .showcase .showcase-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--card-radius) + 4px);
  border: 1px solid var(--soft-border);
  box-shadow: 0 24px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.about .showcase .showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .showcase .showcase-main .badge-note {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid var(--soft-border);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .showcase .showcase-main .badge-note i {
  color: var(--accent-color);
  background: var(--accent-soft);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.about .showcase .showcase-main .badge-note strong {
  display: block;
  line-height: 1.1;
  color: var(--heading-color);
}

.about .showcase .showcase-main .badge-note small {
  display: block;
  color: var(--muted-text);
}

.about .showcase .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about .showcase .showcase-grid .mini {
  margin: 0;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--soft-border);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about .showcase .showcase-grid .mini img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.grid-web-brand-area {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.grid-web-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.grid-web-text-section {
  flex: 1 1 40%;
}

.grid-web-section-title span {
  color: #1f4492;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.grid-web-section-title h2 {
  margin-bottom: 15px;
}

.grid-web-section-title p {
  color: #555;
  line-height: 1.6;
}

/* Logo Section */
.grid-web-logo-section {
  flex: 1 1 55%;
}

.grid-web-brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-web-brand-list li {
  flex-basis: 33.33%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.grid-web-brand-list li a{    
     display: block;
    text-align: center;
    height: 150px;
    line-height: 150px;
    background-color: var(--contrast-color);
    border: 1px solid #e0e0e0}
    .grid-web-brand-list li a:hover{
      background-color: #e2f1ff;
    }  

.grid-web-brand-list img {
  max-width: 100%;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.grid-web-brand-list img:hover {
  opacity: 1;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .grid-web-content {
    flex-direction: column;
    text-align: center;
  }

  .grid-web-text-section,
  .grid-web-logo-section {
    flex: 1 1 100%;
  }

  .grid-web-brand-list li {
    flex: 0 0 45%;
  }
}

@media (min-width: 992px) {
  .about .showcase .showcase-grid .mini img {
    height: 140px;
  }
}

.about .showcase .showcase-grid .mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.stats {
  padding-top: 30px;
  --tile-radius: 10px;
  --tile-border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  --tile-shadow: 0 2px 0 color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 30px;
}

.stats .stats-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 1200px) {
  .stats .stats-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats .stats-board {
    grid-template-columns: 1fr;
  }
}

.stats .stat-tile {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 0%);
  border: var(--tile-border);
  border-radius: var(--tile-radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 132px;
  box-shadow: var(--tile-shadow);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stats .stat-tile:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: translateY(-2px);
}

.stats .stat-tile .tile-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.stats .stat-tile .tile-head i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .stat-tile .tile-head .label .title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.stats .stat-tile .tile-head .label .hint {
  display: block;
  margin-top: 2px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  line-height: 1.4;
}

.stats .stat-tile .tile-metric {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats .stat-tile .tile-metric .metric-number {
  display: inline-block;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1;
  font-size: 36px;
}

@media (max-width: 576px) {
  .stats .stat-tile .tile-metric .metric-number {
    font-size: 32px;
  }
}

.stats .stat-tile .tile-metric .metric-suffix {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  font-weight: 600;
}

.stats .stat-tile:nth-child(1) {
  border-top: 4px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

.stats .stat-tile:nth-child(2) {
  border-top: 4px solid color-mix(in srgb, #0abf53, transparent 30%);
}

.stats .stat-tile:nth-child(2) .tile-head i {
  color: color-mix(in srgb, #0abf53, transparent 0%);
}

.stats .stat-tile:nth-child(3) {
  border-top: 4px solid color-mix(in srgb, #ff7e00, transparent 30%);
}

.stats .stat-tile:nth-child(3) .tile-head i {
  color: color-mix(in srgb, #ff7e00, transparent 0%);
}

.stats .stat-tile:nth-child(4) {
  border-top: 4px solid color-mix(in srgb, #6f42c1, transparent 30%);
}

.stats .stat-tile:nth-child(4) .tile-head i {
  color: color-mix(in srgb, #6f42c1, transparent 0%);
}

.stats .legend-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 12px;
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
}

@media (max-width: 576px) {
  .stats .legend-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.stats .legend-row .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stats .legend-row .legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stats .legend-row .legend-item .dot.dot-primary {
  background: var(--accent-color);
}

.stats .legend-row .legend-item .dot.dot-neutral {
  background: color-mix(in srgb, var(--default-color), transparent 40%);
}

.stats .legend-row .legend-item .text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 30%);
}

.skills .skills-header h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.skills .skills-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.skills .skills-header .certifications {
  display: flex;
  gap: 2rem;
}

.skills .skills-header .certifications .cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--default-color);
}

.skills .skills-header .certifications .cert-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
  }
}

.skills .skill-item {
  background: #efefef5e;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, #000000, transparent 90%);
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.skills .skill-item:hover {
  box-shadow: 0 4px 8px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.skills .skill-item .skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.skills .skill-item .skill-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
}

.skills .skill-item .skill-header .skill-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.skills .skill-item .skill-bar {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 6px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.skills .skill-item .skill-bar .progress-bar {
  height: 100%;
  background-color: var(--accent-color);
  width: 1px;
  transition: width 0.9s ease;
  border-radius: 3px;
}

.skills .skill-item p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .skills .row {
    text-align: center;
  }

  .skills .skills-header {
    margin-bottom: 3rem;
  }

  .skills .skills-header .certifications {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .skills {
    padding: 40px 0;
  }

  .skills .skills-header h3 {
    font-size: 1.8rem;
  }

  .skills .skills-header .certifications {
    flex-direction: column;
    gap: 1rem;
  }

  .skills .skill-item {
    padding: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  position: relative;
  z-index: 0; 
  overflow: hidden;
  --card-radius: 18px;
  --shadow-soft: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  --shadow-hover: 0 16px 44px color-mix(in srgb, var(--default-color), transparent 82%);
  --ring-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  --muted: color-mix(in srgb, var(--default-color), transparent 35%);
}


.features .intro-panel {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 2rem;
  padding: 15px;
}

.features .intro-panel .preview-visual {
  position: relative;
}

.features .intro-panel .preview-visual img {
  display: block;
}

.features .intro-panel .preview-visual::after {
  content: "";
  position: absolute;
  inset: -10px -8px auto auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent-color), transparent 65%), transparent 70%);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.features .intro-panel .intro-content .intro-title {
  font-weight: 500;
  margin-bottom: 8px;
}

.features .intro-panel .intro-content .intro-text {
  color: var(--muted);
  margin: 0;
}

.features .intro-panel .intro-content .intro-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  padding: 8px 0;
}

.features .intro-panel .intro-content .intro-highlights li i {
  color: var(--accent-color);
  font-size: 18px;
}

.features .intro-panel .intro-content .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 6px 22px color-mix(in srgb, var(--accent-color), transparent 70%);
  transition: 0.3s;
}

.features .intro-panel .intro-content .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features .intro-panel .intro-content .link-btn {
  color: var(--accent-color);
  border-radius: 999px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  transition: 0.3s;
}

.features .intro-panel .intro-content .link-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .features .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .features .feature-grid {
    grid-template-columns: 1fr;
  }
}

.features .feature-item {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: var(--card-radius);
  padding:15px;
  overflow: hidden;
}

.features .feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.features .feature-item .f-icon {
  width: 54px;
  height: 54px;
  border-radius: 2rem;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--contrast-color);}

.features .feature-item .f-icon i {
  font-size: 22px;
}

.features .feature-item .f-body .f-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}


.features .feature-item .f-body .f-text {
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 14px;
}

.features .feature-item .f-body .f-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid var(--ring-color);
}

.features .badge-blue {
  background: color-mix(in srgb, var(--accent-color), #5dade2 40%);
}

.features .badge-green {
  background: color-mix(in srgb, var(--accent-color), #2ecc71 45%);
}

.features .badge-purple {
  background: color-mix(in srgb, var(--accent-color), #9b59b6 40%);
}

.features .badge-orange {
  background: color-mix(in srgb, var(--accent-color), #f39c12 40%);
}

.features .badge-cyan {
  background: color-mix(in srgb, var(--accent-color), #48c9b0 40%);
}

.features .badge-pink {
  background: color-mix(in srgb, var(--accent-color), #e91e63 35%);
}

.features .assurance-banner {
  margin-top: 22px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 92%), var(--surface-color));
  border: 1px dashed color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.features .assurance-banner .assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
}

.features .assurance-banner .assurance-icon i {
  font-size: 20px;
}

.features .assurance-banner .assurance-content {
  flex: 1;
}

.features .assurance-banner .assurance-content h5 {
  margin: 0 0 4px 0;
  font-weight: 500;
}

.features .assurance-banner .assurance-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.features .assurance-banner .banner-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  transition: 0.3s;
}

.features .assurance-banner .banner-btn:hover {
  transform: translateX(2px);
  color: var(--contrast-color);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.features .swiper-wrapper {
  height: auto !important;
}

@media (max-width: 992px) {
  .features .intro-panel {
    padding: 24px;
  }

  .features .intro-panel .intro-content .intro-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .features .intro-panel .preview-visual::after {
    width: 90px;
    height: 90px;
  }

  .features .feature-item {
    padding: 18px 16px;
  }

  .features .feature-item .f-icon {
    width: 50px;
    height: 50px;
  }

  .features .feature-item .f-icon i {
    font-size: 20px;
  }

  .features .assurance-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .features .assurance-banner .banner-btn {
    width: 100%;
    text-align: center;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
  background: #f9f9f9;
  background-repeat: no-repeat;
  background-image: url(images/shape-circle.png);
}

.marquee-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: scroll-left 20s linear infinite;
}

.bottom-marquee .marquee-content {
  animation: scroll-right 25s linear infinite;
}

.testimonial-card {
    background-color: rgb(238 242 247);
    padding: 15px;
    border-radius: 15px;
    min-width: 300px;
    align-content: center;
    border-radius: 1rem;
    border: 1px solid #cccccc57;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-card .critic-name {
  font-weight: 600;
  color: var(--bs-black);
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #f9f9f9 0%, transparent 100%);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #f9f9f9 0%, transparent 100%);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}


@media (max-width: 992px) {
  .testimonials .section-header h2 {
    font-size: 28px;
  }

  .testimonials .critic-reviews .critic-review {
    margin-bottom: 30px;
  }

  .testimonials .testimonials-container .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials .section-header h2 {
    font-size: 24px;
  }

  .testimonials .overall-rating {
    padding: 30px;
  }

  .testimonials .overall-rating .rating-number {
    font-size: 36px;
  }

  .testimonials .overall-rating .rating-stars i {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background-color: #0c1e21;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}

.bg-shape-2 {
  top: inherit;
  inset-inline-start: inherit;
  bottom: 0;
  inset-inline-end: 0;
}

.bg-shape-2, .bg-shape-1 {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  max-width: 370px;
  width: 100%;
  z-index: 1; /* Changed from -1 to 1 */
  /* Removed mix-blend-mode: difference */
  pointer-events: none;
}

.bg-shape-2 {
  top: inherit;
  inset-inline-start: inherit;
  bottom: 0;
  inset-inline-end: 0;
}

/* Add opacity for better visibility */
.bg-shape-1 img,
.bg-shape-2 img {
  opacity: 0.15; /* Adjust this value as needed */
  width: 100%;
  height: auto;
}

/* Alternative: Use filter for better visual effect */
.bg-shape-1 img {
  filter: brightness(0) invert(1) opacity(0.15);
}

.bg-shape-2 img {
  filter: brightness(0) invert(1) opacity(0.1);
}
.call-to-action .cta-wrapper {
  position: relative;
}

.call-to-action .text-content {
  position: relative;
  z-index: 2;
}

.call-to-action .text-content .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #efefef;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  position: relative;
}

.call-to-action .text-content .section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.call-to-action .text-content h2 {
    font-size: 46px;
    font-weight: 500;
    color: var(--bs-white);
    line-height: 1.15;
    margin-bottom: 2rem;
}


.call-to-action .text-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.call-to-action .benefits-list {
  margin-bottom: 2.5rem;
}

.call-to-action .benefits-list .benefit-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.call-to-action .benefits-list .benefit-row .benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.call-to-action .benefits-list .benefit-row .benefit-item .check-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-hover-color);
  color: var(--aifnmjmchg-html-bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-row .benefit-item span {
  font-size: 0.95rem;
  color: #efefef;
  font-weight: 400;
}

.call-to-action .action-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.call-to-action .action-group .btn {
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
}

.call-to-action .action-group .btn.btn-primary-action {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border: none;
  font-size: 1rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.call-to-action .action-group .btn.btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.call-to-action .action-group .btn.btn-text-link {
  background: transparent;
  color: #efefef;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.call-to-action .action-group .btn.btn-text-link:hover {
  color: var(--accent-color);
}

.call-to-action .action-group .btn.btn-text-link i {
  font-size: 1.25rem;
}

.call-to-action .trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.call-to-action .trust-indicators .indicator {
  text-align: center;
}

.call-to-action .trust-indicators .indicator .metric {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--aifnmjmchg-html-bg-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action .trust-indicators .indicator .label {
  font-size: 0.85rem;
  color: #efefef;
  font-weight: 400;
}

.call-to-action .trust-indicators .separator {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .visual-section {
  position: relative;
}

.call-to-action .visual-section .image-container {
  position: relative;
  z-index: 2;
}

.call-to-action .visual-section .image-container .main-visual {
  width: 100%;
  border-radius: 12px;
  max-width: 480px;
}

.call-to-action .visual-section .image-container .floating-badge {
  position: absolute;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 92%), 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 92%);
  z-index: 3;
}

.call-to-action .visual-section .image-container .floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.call-to-action .visual-section .image-container .floating-badge .badge-text .badge-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.call-to-action .visual-section .image-container .floating-badge .badge-text .badge-subtitle {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 400;
}

.call-to-action .visual-section .image-container .floating-badge.badge-1 {
  top: 10%;
  left: -20px;
  animation: floatSlow 6s ease-in-out infinite;
}

.call-to-action .visual-section .image-container .floating-badge.badge-2 {
  bottom: 15%;
  right: -30px;
  animation: floatFast 4s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .visual-section .decorative-elements .element {
  position: absolute;
  border-radius: 50%;
}

.call-to-action .visual-section .decorative-elements .element.element-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 98%));
  top: -10%;
  right: 20%;
  animation: drift 8s ease-in-out infinite;
}

.call-to-action .visual-section .decorative-elements .element.element-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, color-mix(in srgb, var(--heading-color), transparent 90%), color-mix(in srgb, var(--heading-color), transparent 98%));
  bottom: -5%;
  left: 10%;
  animation: drift 6s ease-in-out infinite reverse;
}

.call-to-action .visual-section .decorative-elements .element.element-3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 88%), color-mix(in srgb, var(--accent-color), transparent 96%));
  top: 50%;
  left: -5%;
  animation: drift 10s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes floatFast {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(6px) translateX(-3px);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(10px, -8px) rotate(120deg);
  }
  66% {
    transform: translate(-5px, 12px) rotate(240deg);
  }
}

@media (max-width: 992px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .content-block {
    padding: 3.5rem 2.5rem;
  }

  .call-to-action .text-content {
    margin-bottom: 3rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2.5rem;
  }

  .call-to-action .text-content h2 .accent-text {
    display: inline;
  }

  .call-to-action .text-content p {
    max-width: 100%;
  }

  .call-to-action .action-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .call-to-action .action-group .btn.btn-primary-action {
    width: 100%;
    text-align: center;
  }

  .call-to-action .trust-indicators {
    justify-content: space-between;
    gap: 1rem;
  }

  .call-to-action .trust-indicators .separator {
    display: none;
  }

  .call-to-action .floating-badge.badge-1 {
    left: 0;
    top: 5%;
  }

  .call-to-action .floating-badge.badge-2 {
    right: 0;
    bottom: 10%;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }

  .call-to-action .content-block {
    padding: 2.5rem 1.5rem;
  }

  .call-to-action .text-content h2 {
    font-size: 2rem;
  }

  .call-to-action .text-content p {
    font-size: 1rem;
  }

  .call-to-action .benefits-list .benefit-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .call-to-action .trust-indicators .indicator .metric {
    font-size: 1.25rem;
  }

  .call-to-action .trust-indicators .indicator .label {
    font-size: 0.8rem;
  }

  .call-to-action .floating-badge {
    padding: 0.75rem 1rem;
  }

  .call-to-action .floating-badge .badge-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .call-to-action .floating-badge .badge-text .badge-title {
    font-size: 0.9rem;
  }

  .call-to-action .floating-badge .badge-text .badge-subtitle {
    font-size: 0.75rem;
  }

  .call-to-action .decorative-elements .element {
    transform: scale(0.7);
  }

  .call-to-action .decorative-elements .element.element-1 {
    top: -5%;
    right: 10%;
  }

  .call-to-action .decorative-elements .element.element-2 {
    bottom: 0;
    left: 5%;
  }

  .call-to-action .decorative-elements .element.element-3 {
    display: none;
  }
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-section { padding: 40px; }

    #faqHeadings { list-style: none; padding: 0; margin: 0; width: 100%; }
    #faqHeadings li {
      cursor: pointer;
      padding: 12px 15px;
      border-left: 3px solid transparent;
      transition: all 0.3s;
      margin-bottom: 5px;
      background-color: #f9f9f9;
    }
    #faqHeadings li.active {
      border-left: 3px solid var(--accent-color);
      background-color: #e6f0ff;
      font-weight: 500;
    }

    .faq-group { display: none; flex: 1; }
    .faq-group.active { display: block; }

    .faq-item { margin-bottom: 12px; padding: 10px; border-bottom: 1px solid #ddd; }
    .faq-item strong { display: block; margin-bottom: 4px; color: var(--accent-color); }

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details .service-main-image img {
  width: 100%;
  transition: transform 0.6s;
}

.service-details .service-main-image:hover img {
  transform: scale(1.05);
}

.service-details .service-main-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 12px;
  min-width: 120px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-details .service-main-image .experience-badge span {
  font-size: 36px;
  font-weight: 500;
  display: block;
  line-height: 1;
}

.service-details .service-main-image .experience-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.service-details .service-main-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-details .service-main-content .section-header {
  margin-bottom: 25px;
}

.service-details .service-main-content .section-header .section-subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-details .service-main-content .section-header h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-main-content .section-header h2 {
    font-size: 28px;
  }
}

.service-details .service-main-content .lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.service-details .service-main-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.service-details .service-benefits {
  padding: 0;
  list-style: none;
  margin: 20px 0 0 0;
}

.service-details .service-benefits li {
  padding: 12px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.service-details .service-benefits li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 15px;
}

.service-details .service-tabs {
  margin-top: 80px;
}

.service-details .service-tabs .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 30px;
  overflow-x: auto;
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar {
    height: 5px;
  }

  .service-details .service-tabs .nav-tabs::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 10px;
  }
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  color: var(--default-color);
  font-weight: 600;
  background: var(--surface-color);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 10px;
  font-size: 18px;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.service-details .service-tabs .tab-content {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-tabs .tab-content h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-details .service-tabs .tab-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.service-details .service-tabs .tab-content .feature-item {
  padding: 20px;
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s;
}

.service-details .service-tabs .tab-content .feature-item:hover {
  transform: translateY(-5px);
}

.service-details .service-tabs .tab-content .feature-item i {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 15px;
}

.service-details .service-tabs .tab-content .feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-details .service-tabs .tab-content .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.service-details .service-testimonial {
  margin-top: 80px;
}

.service-details .service-testimonial .testimonial-card {
  padding: 40px;
  border-radius: 16px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.service-details .service-testimonial .testimonial-card .client-info {
  text-align: center;
}

.service-details .service-testimonial .testimonial-card .client-info img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 5px solid var(--background-color);
  margin-right: 20px;
}

@media (max-width: 767px) {
  .service-details .service-testimonial .testimonial-card .client-info img {
    margin: 0 auto 20px;
  }
}

.service-details .service-testimonial .testimonial-card .client-info h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.service-details .service-testimonial .testimonial-card .client-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .client-info .stars {
  color: #FFD700;
  font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .quote {
  position: relative;
  padding-left: 30px;
}

.service-details .service-testimonial .testimonial-card .quote i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-testimonial .testimonial-card .quote p {
  font-style: italic;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.service-details .service-cta {
  margin-top: 80px;
  padding: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 40%));
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-cta h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.service-details .service-cta p {
  font-size: 18px;
  color: var(--contrast-color);
  opacity: 0.9;
  margin-bottom: 30px;
}

.service-details .service-cta .btn-service {
  display: inline-flex;
  align-items: center;
  background: var(--contrast-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s;
}

.service-details .service-cta .btn-service i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.service-details .service-cta .btn-service:hover {
  background: var(--background-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-cta .btn-service:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .service-details .service-cta {
    padding: 40px 20px;
  }

  .service-details .service-cta h3 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .service-details .service-main-content {
    margin-top: 30px;
  }

  .service-details .service-tabs {
    margin-top: 50px;
  }

  .service-details .service-testimonial,
  .service-details .service-cta {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .service-details .client-info {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .service-details .service-tabs .tab-content {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-showcase {
  margin-bottom: 3rem;
}

.portfolio-details .portfolio-showcase .main-image {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-showcase .main-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.portfolio-details .portfolio-showcase .main-image img:hover {
  transform: scale(1.02);
}

.portfolio-details .portfolio-showcase .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}


.portfolio-details .portfolio-showcase .gallery-grid .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item img {
  transition: transform 0.4s ease;
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.portfolio-details .portfolio-showcase .gallery-grid .gallery-item img:hover {
  transform: scale(1.1);
}

.portfolio-details .portfolio-description {
  margin-bottom: 2rem;
}

.portfolio-details .portfolio-description h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-description h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.portfolio-details .portfolio-description p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.portfolio-details .sidebar {
  position: sticky;
  top: 30px;
}

.portfolio-details .portfolio-info {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  margin-bottom:0px;
}

.portfolio-details .portfolio-info ul li {
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info ul li:last-child {
  border-bottom: 0;
}

.portfolio-details .portfolio-info ul li span {
  font-weight: 600;
  color: var(--heading-color);
  margin-right: 7px;
}

.portfolio-details .portfolio-info ul li a {
  color: var(--accent-color);
  transition: 0.3s;
}

.portfolio-details .portfolio-info ul li a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: underline;
}

.portfolio-details .portfolio-info ul li.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 10px 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.portfolio-details .portfolio-info .btn-github {
  padding: 10px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-github i {
  margin-right: 5px;
}

.portfolio-details .portfolio-info .btn-github:hover {
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  transform: translateY(-2px);
}

.portfolio-details .client-testimonial {
  background-color: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .client-testimonial .testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.portfolio-details .client-testimonial .testimonial-content p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
  margin: 0;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-left,
.portfolio-details .client-testimonial .testimonial-content .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 22px;
  line-height: 0;
  vertical-align: middle;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-left {
  margin-right: 5px;
}

.portfolio-details .client-testimonial .testimonial-content .quote-icon-right {
  margin-left: 5px;
}

.portfolio-details .client-testimonial .client-info {
  display: flex;
  align-items: center;
}

.portfolio-details .client-testimonial .client-info .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.portfolio-details .client-testimonial .client-info h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.portfolio-details .client-testimonial .client-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-challenges {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .project-challenges h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.portfolio-details .project-challenges h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .project-challenges ul {
  list-style: none;
  padding: 0;
}

.portfolio-details .project-challenges ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.portfolio-details .project-challenges ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.portfolio-details .additional-context {
  background-color: color-mix(in srgb, var(--background-color), black 3%);
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.portfolio-details .additional-context h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.portfolio-details .additional-context h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
}

.portfolio-details .additional-context p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.portfolio-details .additional-context p:last-child {
  margin-bottom: 0;
}


@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
   .dev{
    display: flex;
    align-items: baseline;
    gap: 15px;
   }

    .psweb-project-options { 
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 19 / 6;
  border-radius: 3rem;
  border: 1px solid #cccc;
  padding: 20px;
  gap: 15px;
  background: #efefef8c;
  box-sizing: border-box;
}

/* --- OPTION PANEL --- */
.psweb-project-option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  flex-grow: 1;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transform: scale(0.98);
}

/* Use ::before for fadeable background */
.psweb-project-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--optionBackground, #E6E9ED);
  background-size: cover;
  background-position: center;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
  opacity: 0.6;
}

.psweb-project-option.active::before {
  opacity: 1;
}

/* --- ACTIVE STATE --- */
.psweb-project-option.active {
  flex-grow: 8;
  transform: scale(1.02);
  border-radius: 2rem;
}

/* --- SHADOW OVERLAY --- */
.psweb-project-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 1;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.psweb-project-option.active .psweb-project-shadow {
  box-shadow: inset 0 -120px 120px -120px black,
              inset 0 -120px 120px -100px black;
}

.psweb-project-option:not(.active) .psweb-project-shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0 -120px black,
              inset 0 -120px 0 -100px black;
}

/* --- LABEL --- */
.psweb-project-label {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: auto;
  min-height: 50px;
  gap: 10px;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.psweb-project-option:not(.active) .psweb-project-label {
  bottom: 10px;
  left: 15px;
}

/* --- ICON --- */
.psweb-project-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: #1a2a6c;
}

.psweb-project-favicon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* --- TEXT INFO --- */
.psweb-project-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  white-space: normal;
  line-height: 1.3;
}

.psweb-project-info > div {
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.psweb-project-option.active .psweb-project-info > div {
  opacity: 1;
  transform: translateY(0);
}

.psweb-project-main {
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.psweb-project-main a {
  color: #fff;
  text-decoration: none;
}

.psweb-project-main a:hover {
  text-decoration: underline;
}

.psweb-project-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}


        .portfolio-carousel .owl-stage {
            margin: 15px 0;
            display: flex;
            display: -webkit-flex;
        }
        
        .portfolio-game-item {
            margin: 0 15px 15px;
            width: 250px;
            height: 300px;
            display: flex;
            display: -webkit-flex;
            align-items: flex-end;
            -webkit-align-items: flex-end;
            background: #343434 no-repeat center center / cover;
            border-radius:1rem;
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease-in-out;
            -webkit-transition: all 0.4s ease-in-out;
            cursor: pointer;
        }
        
        .portfolio-game-item.portfolio-active {
            width: 500px;
        }
        
        .portfolio-game-item::after {
            content: "";
            display: block;
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 0;
            background-image: linear-gradient(to bottom, rgb(255 255 255 / 0%), rgb(0 0 0));
            height: 40%;
        }
        
        .portfolio-game-desc {
            padding: 0 24px 12px;
            color: #fff;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transform: translateY(calc(100% - 54px));
            -webkit-transform: translateY(calc(100% - 54px));
            transition: all 0.4s ease-in-out;
            -webkit-transition: all 0.4s ease-in-out;
        }
        
        .portfolio-game-item.portfolio-active .portfolio-game-desc {
            transform: none;
            -webkit-transform: none;
        }
        
        .portfolio-game-desc h3 {
            margin: 0 0 10px;
            font-size: 1.2rem;
            line-height: 36px;
            color: white;
        }
        
        .portfolio-game-desc p {
            opacity: 0;
            -webkit-transform: translateY(32px);
            transform: translateY(32px);
            transition: all 0.4s ease-in-out 0.2s;
            -webkit-transition: all 0.4s ease-in-out 0.2s;
            color: white;
        }
        
        .portfolio-game-item.portfolio-active .portfolio-game-desc p {
            opacity: 1;
            font-size: 0.9rem;
            font-weight: 300;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
        
        .portfolio-carousel.owl-theme .owl-dots {
            margin-top: -20px;
            position: relative;
            z-index: 5;
        }
        
        /* Responsive Styles */
        @media (min-width: 992px) and (max-width: 1199px) {
            .portfolio-line-title {
                margin-bottom: 32px;
            }
            
            .portfolio-game-desc h3 {
                margin: 0 0 8px;
                font-size: 24px;
                line-height: 32px;
            }
            
            .portfolio-game-section {
                padding: 50px 30px;
            }
            
            .portfolio-game-item {
                margin: 0 12px 60px;
                width: 260px;
                height: 360px;
            }
            
            .portfolio-game-item.portfolio-active {
                width: 400px;
            }
            
            .portfolio-game-desc {
                transform: translateY(calc(100% - 46px));
                -webkit-transform: translateY(calc(100% - 46px));
            }
        }
        
        @media (min-width: 768px) and (max-width: 991px) {
            .portfolio-line-title {
                margin-bottom: 32px;
                width: 330px;
            }
            
            .portfolio-game-desc h3 {
                margin: 0 0 8px;
                font-size: 24px;
                line-height: 32px;
            }
            
            .portfolio-game-section {
                padding: 50px 30px 40px;
            }
            
            .portfolio-game-item {
                margin: 0 12px 60px;
                width: 240px;
                height: 330px;
            }
            
            .portfolio-game-item.portfolio-active {
                width: 360px;
            }
            
            .portfolio-game-desc {
                transform: translateY(calc(100% - 42px));
                -webkit-transform: translateY(calc(100% - 42px));
            }
        }
        
        @media (max-width: 767px) {
            .portfolio-line-title {
                margin-bottom: 20px;
                width: 250px;
            }
            
            .portfolio-game-desc h3 {
                margin: 0 0 8px;
                font-size: 19px;
                line-height: 24px;
            }
            
            .portfolio-game-section {
                padding: 30px 15px 20px;
            }
            
            .portfolio-game-item {
                margin: 0 10px 40px;
                width: 200px;
                height: 280px;
            }
            
            .portfolio-game-item.portfolio-active {
                width: 270px;
                box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
                -webkit-box-shadow: 6px 10px 10px rgba(0, 0, 0, 0.25);
            }
            
            .portfolio-game-desc {
                padding: 0 14px 5px;
                transform: translateY(calc(100% - 42px));
                -webkit-transform: translateY(calc(100% - 42px));
            }
        }