/**
* Template Name: check1
* Template URL: https://check.com/check1-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: check.com
* License: https://check.com/license/
*/

/*--------------------------------------------------------------
# Design system: typography & color
--------------------------------------------------------------*/
:root {
  --default-font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --heading-font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --background-color: #f1f4f8;
  --default-color: #3d4f60;
  --heading-color: #0a1628;
  --accent-color: #0d9488;
  --accent-dark: #0f766e;
  --accent-glow: rgba(13, 148, 136, 0.35);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --muted-color: #64748b;
  --border-color: #dce3eb;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.12);
  --header-width: 288px;
}

:root {
  --nav-color: #94a3b8;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #0a1628;
  --nav-dropdown-background-color: #0f172a;
  --nav-dropdown-color: #94a3b8;
  --nav-dropdown-hover-color: #ffffff;
}

.light-background {
  --background-color: #e8edf3;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0a1628;
  --default-color: #cbd5e1;
  --heading-color: #f8fafc;
  --surface-color: #132a36;
  --contrast-color: #ffffff;
}

/* 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);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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 - Redesign
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: linear-gradient(180deg, #0a1628 0%, #0f2840 48%, #0a1628 100%);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 28px 18px;
  width: var(--header-width);
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.18);
}

.header .profile-img img {
  margin: 0 auto 20px;
  display: block;
  width: 104px;
  height: 104px;
  object-fit: cover;
  border: 3px solid rgba(45, 212, 191, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.12), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: center;
}

.header .social-links {
  margin: 0 0 24px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.header .social-links a {
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  text-align: center;
  width: 38px;
  height: 38px;
  transition: 0.25s;
}

.header .social-links a:hover {
  color: #fff;
  background: var(--accent-color);
  transform: translateY(-2px);
}

@media (min-width: 1200px) {
  .header~main,
  .header~#footer {
    margin-left: var(--header-width);
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 14px;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.25s;
  width: 100%;
  border-radius: var(--radius-md);
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
  font-size: 12px;
  line-height: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: var(--nav-dropdown-color);
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  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);
}

.nav-cta-wrap {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0 4px;
}

.nav-cta-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 !important;
  padding: 14px 16px !important;
  border-radius: var(--radius-md) !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
  box-shadow: 0 6px 20px var(--accent-glow);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.nav-cta-btn:hover,
.nav-cta-btn:focus {
  color: #fff !important;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
  transform: translateY(-1px);
}

.nav-cta-btn .navicon {
  color: #fff !important;
  font-size: 1.25rem !important;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--muted-color);
  background: linear-gradient(180deg, #0a1628 0%, #020617 100%);
  font-size: 0.875rem;
  padding: 48px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.25s;
}

.footer .footer-links a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 4px solid var(--border-color);
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 22px;
  bottom: 178px;
  z-index: 99998;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: opacity 0.35s ease, visibility 0.35s ease, bottom 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px var(--accent-glow);
  text-decoration: none;
}

.scroll-top i {
  font-size: 26px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #14b8a6 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--accent-glow);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 186px;
}

/*--------------------------------------------------------------
# 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);
  padding: 25px 0;
  position: relative;
}

.page-title.dark-background {
  padding: 3.5rem 0;
  background: linear-gradient(118deg, #0a1628 0%, #134e4a 42%, #115e59 100%);
  position: relative;
  overflow: hidden;
}

.page-title.dark-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(45, 212, 191, 0.18), transparent 55%);
  pointer-events: none;
}

.page-title.dark-background .container {
  position: relative;
  z-index: 1;
}

.page-title.dark-background h1 {
  font-family: var(--heading-font);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

.page-title.dark-background p {
  color: rgba(248, 250, 252, 0.88);
  margin-bottom: 0;
  font-size: 1.05rem;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs 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: 72px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles - Redesign
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 48px;
  position: relative;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  font-family: var(--heading-font);
  font-size: clamp(1.65rem, 3.5vw, 2.125rem);
  font-weight: 800;
  margin-bottom: 12px;
  padding-bottom: 18px;
  position: relative;
  letter-spacing: -0.03em;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2dd4bf);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 4px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--muted-color);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Hero Section - Redesign
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.94) 0%, rgba(15, 40, 64, 0.88) 45%, rgba(15, 118, 110, 0.55) 100%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 4;
  text-align: center;
}

/*--------------------------------------------------------------
# Hero — floating software / design icons
--------------------------------------------------------------*/
.hero-fly-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-fly {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(204, 251, 241, 0.62);
  text-shadow:
    0 0 8px rgba(45, 212, 191, 0.55),
    0 0 28px rgba(45, 212, 191, 0.45),
    0 0 48px rgba(20, 184, 166, 0.25);
  filter: drop-shadow(0 0 6px rgba(94, 234, 212, 0.35));
  font-size: clamp(1.1rem, 2.8vw, 1.85rem);
  will-change: transform;
}

.hero-fly i {
  display: block;
  line-height: 1;
}

@keyframes hero-fly-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  20% {
    transform: translate(14px, -22px) rotate(5deg);
  }
  45% {
    transform: translate(-10px, -38px) rotate(-4deg);
  }
  70% {
    transform: translate(18px, -14px) rotate(3deg);
  }
}

@keyframes hero-fly-swoop {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.72;
  }
  35% {
    transform: translate(-24px, -32px) rotate(-8deg) scale(1.06);
    opacity: 0.95;
  }
  65% {
    transform: translate(20px, -48px) rotate(6deg) scale(0.98);
    opacity: 0.82;
  }
}

@keyframes hero-fly-glide {
  0% {
    transform: translateX(-6vw) translateY(0) rotate(-6deg);
    opacity: 0.38;
  }
  15% {
    opacity: 0.78;
  }
  85% {
    opacity: 0.78;
  }
  100% {
    transform: translateX(6vw) translateY(-20px) rotate(6deg);
    opacity: 0.38;
  }
}

.hero-fly--1 {
  top: 10%;
  left: 6%;
  animation: hero-fly-drift 11s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-fly--2 {
  top: 22%;
  right: 8%;
  left: auto;
  animation: hero-fly-swoop 14s ease-in-out infinite;
  animation-delay: -2s;
  font-size: clamp(1.3rem, 3.2vw, 2.1rem);
}

.hero-fly--3 {
  top: 42%;
  left: 4%;
  animation: hero-fly-glide 18s linear infinite;
  animation-delay: -4s;
}

.hero-fly--4 {
  top: 38%;
  right: 6%;
  left: auto;
  animation: hero-fly-drift 13s ease-in-out infinite reverse;
  animation-delay: -1s;
}

.hero-fly--5 {
  bottom: 28%;
  left: 10%;
  top: auto;
  animation: hero-fly-swoop 16s ease-in-out infinite;
  animation-delay: -5s;
}

.hero-fly--6 {
  bottom: 22%;
  right: 12%;
  left: auto;
  top: auto;
  animation: hero-fly-drift 10s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-fly--7 {
  top: 55%;
  left: 18%;
  animation: hero-fly-swoop 12s ease-in-out infinite reverse;
  animation-delay: -7s;
  color: rgba(94, 234, 212, 0.78);
}

.hero-fly--8 {
  top: 14%;
  left: 42%;
  animation: hero-fly-glide 22s linear infinite;
  animation-delay: -9s;
  font-size: clamp(1rem, 2.4vw, 1.6rem);
}

.hero-fly--9 {
  bottom: 38%;
  left: 38%;
  top: auto;
  animation: hero-fly-drift 15s ease-in-out infinite;
  animation-delay: -2.5s;
}

.hero-fly--10 {
  top: 62%;
  right: 22%;
  left: auto;
  animation: hero-fly-swoop 17s ease-in-out infinite;
  animation-delay: -6s;
  color: rgba(255, 255, 255, 0.55);
}

.hero-fly--11 {
  top: 8%;
  right: 28%;
  left: auto;
  animation: hero-fly-drift 9s ease-in-out infinite reverse;
  animation-delay: -1s;
  font-size: clamp(0.95rem, 2.2vw, 1.45rem);
}

.hero-fly--12 {
  bottom: 12%;
  right: 28%;
  left: auto;
  top: auto;
  animation: hero-fly-glide 20s linear infinite reverse;
  animation-delay: -11s;
}

@media (max-width: 768px) {
  .hero-fly--8,
  .hero-fly--9,
  .hero-fly--12 {
    display: none;
  }

  .hero-fly {
    font-size: clamp(1rem, 4vw, 1.35rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fly-icons {
    display: none;
  }
}

.hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-badge span:nth-child(even) {
  opacity: 0.45;
  font-weight: 400;
}

.hero h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero p {
  margin: 20px 0 0 0;
  font-size: clamp(1.0625rem, 2.5vw, 1.3125rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.hero p span {
  letter-spacing: 0.5px;
  color: #5eead4;
  border-bottom: 2px solid rgba(94, 234, 212, 0.65);
  padding-bottom: 2px;
}

.hero-cta {
  margin-top: 1.75rem;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #0a1628 !important;
  background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 45%, #2dd4bf 100%);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none !important;
}

.btn-hero-primary:hover {
  color: #0a1628 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(45, 212, 191, 0.45);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: #fff !important;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-md);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  text-decoration: none !important;
}

.btn-hero-outline:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }
}

/*--------------------------------------------------------------
# About Section - Redesign
--------------------------------------------------------------*/
.about .content h2 {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.about .content p {
  color: var(--default-color);
  line-height: 1.7;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 1rem;
  margin-right: 10px;
  color: var(--accent-color);
  line-height: 0;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Stats Section - Redesign
--------------------------------------------------------------*/
.stats.section {
  padding: 56px 0;
  background: linear-gradient(120deg, #0a1628 0%, #134e4a 50%, #0f2840 100%);
  position: relative;
}

.stats.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 0% 100%, rgba(45, 212, 191, 0.12), transparent 50%);
  pointer-events: none;
}

.stats.section .container {
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  padding: 28px 24px;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s, background 0.25s;
}

.stats .stats-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.stats .stats-item i {
  color: var(--accent-color);
  display: block;
  font-size: 2.25rem;
  margin-bottom: 12px;
  line-height: 1;
}

.stats .stats-item .purecounter {
  color: #fff;
  font-size: 2.25rem;
  line-height: 1.2;
  display: block;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: -0.02em;
}

.stats .stats-item p {
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 0.875rem;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Skills / Technology Frameworks (tech stack cards)
--------------------------------------------------------------*/
.tech-stack.section {
  background: linear-gradient(165deg, #e4f2f0 0%, #f1f4f8 38%, #e8edf3 100%);
  position: relative;
  overflow: clip;
}

.tech-stack.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 10% 0%, rgba(13, 148, 136, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 80%, rgba(15, 118, 110, 0.08), transparent 50%);
  pointer-events: none;
}

.tech-stack .section-title,
.tech-stack .container {
  position: relative;
  z-index: 1;
}

.tech-stack-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--border-color), transparent 15%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tech-stack-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
}

.tech-stack-card::before {
  content: "";
  display: block;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-color), #2dd4bf, var(--accent-dark));
  opacity: 0.95;
}

.tech-stack-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.65) 100%);
}

.tech-stack-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  box-shadow: 0 6px 18px var(--accent-glow);
}

.tech-stack-card__meta h3 {
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
}

.tech-stack-card__meta p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted-color);
}

.tech-stack-card__body {
  padding: 1.15rem 1.5rem 1.4rem;
}

.tech-stack-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
}

.tech-stack-chips .tech-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  background: color-mix(in srgb, var(--background-color), white 40%);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tech-stack-card:hover .tech-stack-chips .tech-chip {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.tech-stack-chips .tech-chip:hover {
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent-color), white 88%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .tech-stack-card,
  .tech-stack-chips .tech-chip {
    transition: none;
  }

  .tech-stack-card:hover {
    transform: none;
  }

  .tech-stack-chips .tech-chip:hover {
    transform: none;
  }
}

/* Legacy progress bars (other template pages) */
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.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: 14px;
  font-weight: 400;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.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: 0.3s;
}

.portfolio .portfolio-content {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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);
}

.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.8);
}

.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% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.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%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  position: relative;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.services .service-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.services .service-item .icon {
  background: linear-gradient(145deg, var(--accent-color), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  transition: 0.3s;
  border: none;
  margin-right: 20px;
  box-shadow: 0 6px 18px var(--accent-glow);
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.services .service-item:hover .icon {
  transform: scale(1.06);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.services .service-item:hover .icon i {
  color: var(--contrast-color);
}

.services .service-item .title {
  font-family: var(--heading-font);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .title a:hover {
  color: var(--accent-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
  background: var(--surface-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
}

.pricing .pricing-card-featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 36px var(--accent-glow);
  outline: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  outline-offset: 2px;
}

.pricing .pricing-card-featured:hover {
  box-shadow: 0 16px 48px var(--accent-glow);
}

.pricing .pricing-card-header {
  padding: 28px 24px;
  text-align: center;
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 55%, #ccfbf1 100%);
  border-bottom: 1px solid var(--border-color);
}

.pricing .pricing-card-featured .pricing-card-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  color: var(--contrast-color);
  border-bottom-color: transparent;
}

.pricing .pricing-card-featured .pricing-card-header h3,
.pricing .pricing-card-featured .pricing-card-header .pricing-amount {
  color: var(--contrast-color);
}

.pricing .pricing-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  text-transform: capitalize;
  letter-spacing: -0.02em;
}

.pricing .pricing-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: -0.02em;
}

.pricing .pricing-amount .currency {
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 2px;
}

.pricing .pricing-features {
  list-style: none;
  margin: 0;
  padding: 24px;
  font-size: 0.875rem;
  line-height: 1.65;
  flex: 1 1 auto;
  color: var(--default-color);
}

.pricing .pricing-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--default-color);
  text-transform: capitalize;
}

.pricing .pricing-features li i {
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 14px;
}

.pricing .pricing-features li .bi-check-circle-fill {
  color: #28a745;
}

.pricing .pricing-features li .bi-x-circle {
  color: #dc3545;
  opacity: 0.85;
}

.pricing .pricing-features li .bi-info-circle {
  color: var(--accent-color);
}

.pricing .pricing-card-footer {
  padding: 24px;
  padding-top: 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.pricing .pricing-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 180px;
  text-align: center;
}

@media (min-width: 1200px) {
  .pricing .row.justify-content-center > [class*="col-xl"] {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pricing .row .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 24px;
  background-color: var(--surface-color);
  position: relative;
  margin-bottom: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid var(--surface-color);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: var(--shadow-md);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.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);
}

.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 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog .blog-entry {
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.blog .blog-entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.blog .blog-img {
  overflow: hidden;
  height: 250px;
}

.blog .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog .blog-entry:hover .blog-img img {
  transform: scale(1.1);
}

.blog .blog-content {
  padding: 25px;
}

.blog .blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog .blog-content h3 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.blog .blog-content h3 a:hover {
  color: var(--accent-color);
}

.blog .blog-meta {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog .blog-meta i {
  margin-right: 5px;
}

.blog .blog-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog .read-more .btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.blog .read-more .btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  transform: translateX(5px);
}

.blog .blog-feature {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.blog .blog-feature h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.blog .blog-feature ul li {
  padding: 10px 0;
  color: var(--default-color);
  font-size: 1rem;
}

.blog .blog-feature ul li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.blog .blog-feature .btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.blog .blog-feature .btn:hover {
  background: transparent;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pay Now Button Styling (Side Panel)
--------------------------------------------------------------*/
.navmenu a.pay-now-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  color: var(--contrast-color);
  margin-top: 15px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--accent-glow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navmenu a.pay-now-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.navmenu a.pay-now-btn:hover {
  background: linear-gradient(135deg, #14b8a6 0%, var(--accent-color) 100%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.navmenu a.pay-now-btn:hover::before {
  left: 100%;
}

.navmenu a.pay-now-btn:active {
  transform: translateY(0);
}

.navmenu a.pay-now-btn .navicon {
  color: var(--contrast-color);
  font-size: 18px;
}

/*--------------------------------------------------------------
# Blog Cards Styling
--------------------------------------------------------------*/
.blog-card {
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.88) 0%, rgba(15, 118, 110, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
  opacity: 1;
}

.blog-card-overlay .btn {
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--contrast-color);
  background: transparent;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.blog-card-overlay .btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-category {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-date i {
  margin-right: 5px;
  color: var(--accent-color);
}

.blog-card-content h3 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.blog-card-content h3 a:hover {
  color: var(--accent-color);
}

.blog-card-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.read-more-btn {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more-btn:hover {
  color: var(--accent-dark);
  transform: translateX(3px);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

.blog-stats {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #6c757d;
}

.blog-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-stats i {
  color: var(--accent-color);
}

/* Responsive Design for Blog Cards */
@media (max-width: 768px) {
  .blog-card-img {
    height: 180px;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .blog-card-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  
  .blog-stats {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .blog-card-img {
    height: 160px;
  }
  
  .blog-card-content {
    padding: 15px;
  }
  
  .blog-card-content h3 a {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Site utilities: CTAs, WhatsApp, Bootstrap alignment
--------------------------------------------------------------*/
main .text-primary {
  color: var(--accent-color) !important;
}

.page-title:not(.dark-background) {
  border-bottom: 1px solid var(--border-color);
  background: var(--surface-color);
}

.page-title:not(.dark-background) h1 {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.button-9 {
  appearance: none;
  backface-visibility: hidden;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 6px 20px var(--accent-glow);
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  height: 50px;
  line-height: 1.15;
  margin: 15px 0 0 0;
  outline: none;
  overflow: hidden;
  padding: 0 40px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
}

.button-9::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #14b8a6 0%, var(--accent-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button-9:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--accent-glow);
  color: #ffffff;
  text-decoration: none;
  animation: button9-pulse 2s infinite;
}

.button-9:hover::before {
  opacity: 1;
}

.button-9:active {
  transform: translateY(0);
}

.button-9:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 65%), 0 6px 20px var(--accent-glow);
  outline: none;
}

.button-9:disabled {
  cursor: default;
  opacity: 0.6;
}

.button-9 span {
  position: relative;
  z-index: 1;
}

.button-9.button-outline {
  background: transparent !important;
  color: var(--accent-color) !important;
  border: 2px solid var(--accent-color) !important;
  box-shadow: none !important;
}

.button-9.button-outline::before {
  display: none;
}

.button-9.button-outline:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%) !important;
  color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  animation: none;
}

@keyframes button9-pulse {
  0% {
    box-shadow: 0 6px 20px var(--accent-glow), 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 40%);
  }
  50% {
    box-shadow: 0 6px 20px var(--accent-glow), 0 0 0 10px transparent;
  }
  100% {
    box-shadow: 0 6px 20px var(--accent-glow), 0 0 0 0 transparent;
  }
}

.float-actions {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-actions a.float {
  position: relative;
  bottom: auto;
  right: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-actions a.float:hover {
  color: #fff !important;
  transform: scale(1.07);
}

.float-actions a.float i {
  line-height: 1;
}

.float-wa {
  background: linear-gradient(145deg, #25d366, #128c7e);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.float-wa:hover {
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.52);
}

.float-call {
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.42);
}

.float-call:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.52);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #5eead4;
  text-decoration: none;
}