 @charset "UTF-8";


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

 /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
 :root {
   --background-color: #f1f5f4;
   /* Background color for the entire website, including individual sections */
   --default-color: #212529;
   /* Default color used for the majority of the text content across the entire website */
   --heading-color: #2d465e;
   /* Color for headings, subheadings and title throughout the website */
   --accent-color: #08915e;
   /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
   --surface-color: #ffffff;
   /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
   --contrast-color: #ffffff;
   /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
 }

 /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
 :root {
   --nav-color: rgb(255, 255, 255);
   /* The default color of the main navmenu links */
   --nav-hover-color: #08915e;
   /* Applied to main navmenu links when they are hovered over or active */
   --nav-mobile-background-color: #ffffff;
   /* Used as the background color for mobile navigation menu */
   --nav-dropdown-background-color: #ffffff;
   /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
   --nav-dropdown-color: #212529;
   /* Used for navigation links of the dropdown items in the navigation menu. */
   --nav-dropdown-hover-color: #08915e;
   /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
 }

 /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

 .dark-background {
   --background-color: #060606;
   --default-color: #ffffff;
   --heading-color: #ffffff;
   --surface-color: #252525;
   --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);
 }

 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);
 }


 /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
 .header {
   --background-color: rgba(255, 255, 255, 0);
   --default-color: #ffffff;
   --heading-color: #ffffff;
   color: var(--default-color);
   background-color: var(--background-color);
   padding: 15px 0;
   transition: all 0.5s;
   z-index: 997;
 }

 .header .logo {
   line-height: 1;
 }

 .header .logo img {
   max-height: 90px;
   margin-right: 8px;
 }


 .scrolled .header {
   box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
 }


 /* Global Header on Scroll
------------------------------*/
 .scrolled .header {
   --background-color: rgba(0, 0, 0, 0.8);
 }

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

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

   .navmenu li {
     position: relative;
   }

   .navmenu a,
   .navmenu a:focus {
     color: var(--nav-color);
     padding: 18px 15px;
     font-size: 17.5px;
     font-family: var(--nav-font);
     font-weight: 400;
     display: flex;
     align-items: center;
     justify-content: space-between;
     white-space: nowrap;
     transition: 0.3s;
   }

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

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

   .navmenu li:hover>a,
   .navmenu .active,
   .navmenu .active:focus {
     color: #6ede8a;

   }

   .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: 15px;
     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;
   }

   .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;
   }

   .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: absolute;
     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;
   }
 }

 /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 .footer {
   color: var(--default-color);
   background-color: var(--background-color);
   font-size: 14px;
   position: relative;
 }

 .footer .footer-top {
   padding-top: 50px;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

 .footer .footer-about .logo {
   line-height: 1;
   margin-bottom: 25px;
 }

 .footer .footer-about .logo img {
   max-height: 80px;
   margin-right: 6px;
 }


 .footer .footer-about p {
   font-size: 14px;
   font-family: var(--heading-font);
 }

 .social-links a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
   font-size: 20px;
   color: #fff;
   margin-right: 10px;
   transition: 0.3s;
 }

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

 }

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

 .footer .footer-links {
   margin-bottom: 30px;
 }

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

 .footer .footer-links ul i {
   padding-right: 2px;
   font-size: 12px;
   line-height: 0;
 }

 .footer .footer-links ul li {
   padding: 10px 0;
   display: flex;
   align-items: center;
 }

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

 .footer .footer-links ul a {
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   display: inline-block;
   line-height: 1;
 }

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

 .footer .footer-contact p {
   margin-bottom: 5px;
 }

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

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

 .sitename {
   color: #fff;
 }


 /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
 .scroll-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   left: 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;
 }



 /*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
 .page-title {
   color: var(--default-color);
   background-color: var(--background-color);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 160px 0 80px 0;
   text-align: center;
   position: relative;
 }

 .page-title:before {
   content: "";
   background-color: color-mix(in srgb, var(--background-color), transparent 30%);
   position: absolute;
   inset: 0;
 }


 .page-title .breadcrumbs ol {
   display: flex;
   flex-wrap: wrap;
   list-style: none;
   justify-content: center;
   padding: 0;
   margin: 0;
   font-size: 20px;
   font-weight: 600;
 }

 .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 50%);
 }

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

 @media (max-width: 1199px) {

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

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

 .section-title h2 {
   font-size: 32px;
   font-weight: 700;
   position: relative;
 }

 .section-title h2:before,
 .section-title h2:after {
   content: "";
   width: 50px;
   height: 2px;
   background: var(--accent-color);
   display: inline-block;
 }

 .section-title h2:before {
   margin: 0 15px 10px 0;
 }

 .section-title h2:after {
   margin: 0 0 10px 15px;
 }

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

 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 .hero {
   padding: 0;
   overflow: hidden;
   position: relative;
 }

 .hero .hero-container {
   position: relative;
   min-height: 90vh;
   display: flex;
   align-items: center;
   padding: 180px 0 80px 0;
 }

 .hero .hero-container .video-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
 }

 .hero .hero-container .overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 20%) 0%, color-mix(in srgb, var(--background-color), transparent 90%) 100%);
   z-index: 2;
 }

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

 .hero .hero-container .hero-content {
   padding-right: 30px;
 }

 .hero .hero-container .hero-content h1 {
   font-size: 3.2rem;
   font-weight: 800;
   margin-bottom: 25px;
   line-height: 1.2;
 }

 @media (max-width: 992px) {
   .hero .hero-container .hero-content h1 {
     font-size: 2.5rem;
   }
 }

 @media (max-width: 576px) {
   .hero .hero-container .hero-content h1 {
     font-size: 2rem;
     text-align: center;
   }
 }

 .hero .hero-container .hero-content p {
   font-size: 1.2rem;
   margin-bottom: 35px;
   opacity: 0.9;
 }

 @media (max-width: 576px) {
   .hero .hero-container .hero-content p {
     font-size: 1.1rem;
     text-align: center;
   }
 }

 .hero .hero-container .hero-content .cta-buttons {
   display: flex;
   gap: 15px;
 }

 @media (max-width: 576px) {
   .hero .hero-container .hero-content .cta-buttons {
     flex-direction: column;
     align-items: center;
   }
 }

 .hero .hero-container .hero-content .cta-buttons a {
   padding: 14px 30px;
   border-radius: 6px;
   font-weight: 600;
   font-size: 1.5rem;
   letter-spacing: 0.5px;
   display: inline-block;
   transition: all 0.3s ease;
   text-align: center;
 }

 @media (max-width: 576px) {
   .hero .hero-container .hero-content .cta-buttons a {
     width: 100%;
     max-width: 240px;
   }
 }

 .hero .hero-container .hero-content .cta-buttons .btn-primary {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border: 2px solid var(--accent-color);
 }

 .hero .hero-container .hero-content .cta-buttons .btn-primary:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
   transform: translateY(-3px);
   box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
 }



 @media (max-width: 992px) {
   .hero .hero-container .hero-content {
     padding-right: 0;
     margin-bottom: 40px;
   }
 }

 .hero .hero-container .stats-card {
   background-color: color-mix(in srgb, var(--surface-color), transparent 85%);
   backdrop-filter: blur(10px);
   border-radius: 15px;
   padding: 30px;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
 }

 .hero .hero-container .stats-card .stats-header {
   text-align: center;
   margin-bottom: 25px;
 }

 .hero .hero-container .stats-card .stats-header h3 {
   font-size: 1.8rem;
   font-weight: 700;
   margin-bottom: 15px;
 }

 .hero .hero-container .stats-card .stats-header .decoration-line {
   height: 3px;
   width: 70px;
   background-color: var(--accent-color);
   margin: 0 auto;
 }

 .hero .hero-container .stats-card .stats-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 25px;
 }

 .hero .hero-container .stats-card .stats-grid .stat-item {
   display: flex;
   align-items: center;
 }

 .hero .hero-container .stats-card .stats-grid .stat-item .stat-icon {
   font-size: 1.8rem;
   height: 55px;
   width: 55px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--contrast-color);
   background-color: var(--accent-color);
   margin-right: 12px;
   flex-shrink: 0;
 }

 .hero .hero-container .stats-card .stats-grid .stat-item .stat-content h4 {
   font-size: 1.6rem;
   font-weight: 800;
   margin: 0;
   line-height: 1;
 }

 .hero .hero-container .stats-card .stats-grid .stat-item .stat-content p {
   opacity: 0.8;
   margin: 5px 0 0 0;
   font-size: 0.9rem;
 }

 @media (max-width: 576px) {
   .hero .hero-container .stats-card .stats-grid {
     grid-template-columns: 1fr;
     gap: 20px;
   }
 }

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

 .hero .contact-form-landscape {
   background-color: var(--accent-color);
 }

 .hero .contact-form-landscape .btn-submit {
   background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
   color: var(--contrast-color);
   padding: 5px 12px;
   border-radius: 4px;
   font-size: 1rem;
   transition: all 0.3s ease;
 }

 .hero .contact-form-landscape .btn-submit:hover {
   background-color: var(--contrast-color);
   color: var(--accent-color);
 }


 .form-label {
   margin-bottom: 0 !important;
 }

 /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
 .about {
   padding-top: 60px;
   padding-bottom: 60px;
 }

 .about .display-6 {
   line-height: 1.2;
 }

 .about .display-6 span {
   position: relative;
   color: var(--accent-color);
 }

 .about .display-6 span:after {
   content: "";
   position: absolute;
   width: 100%;
   height: 10px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
   left: 0;
   bottom: 5px;
   z-index: -1;
 }

 .about .lead {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   font-size: 1.125rem;
 }

 .about .stat-box {
   display: flex;
   flex-direction: column;
   background-color: var(--surface-color);
   padding: 1rem 1.5rem;
   border-radius: 10px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   min-width: 110px;
   border-bottom: 3px solid var(--accent-color);
   transition: transform 0.3s ease;
 }

 .about .stat-box:hover {
   transform: translateY(-5px);
 }

 .about .stat-box .stat-number {
   font-size: 2rem;
   font-weight: 700;
   line-height: 1;
   color: var(--heading-color);
 }

 .about .stat-box .stat-label {
   font-size: 0.875rem;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-top: 5px;
 }

 .about .signature-block {
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
   padding-top: 1.5rem;
 }

 .about .signature-block img {
   transition: transform 0.3s ease;
 }

 .about .signature-block img:hover {
   transform: scale(1.05);
 }

 .about .image-stack {
   position: relative;
   height: 500px;
 }

 @media (max-width: 992px) {
   .about .image-stack {
     height: 400px;
     margin-top: 3rem;
   }
 }

 @media (max-width: 576px) {
   .about .image-stack {
     height: 350px;
   }
 }

 .about .image-stack .image-stack-item {
   position: absolute;
   width: 80%;
   height: auto;
   transition: transform 0.5s ease;
 }

 .about .image-stack .image-stack-item:hover {
   transform: translateY(-10px);
 }

 .about .image-stack .image-stack-item img {
   object-fit: cover;
   width: 100%;
 }

 .about .image-stack .image-stack-item-top {
   z-index: 1;
   top: 0;
   left: 0;
 }

 .about .image-stack .image-stack-item-bottom {
   z-index: 2;
   bottom: 0;
   right: 0;
 }

 .about .mission-vision-row {
   margin-top: 2rem;
 }

 .about .mission-vision-row .value-card {
   background-color: var(--surface-color);
   border-radius: 15px;
   padding: 2rem;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   z-index: 1;
 }

 .about .mission-vision-row .value-card:before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 0;
   background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
   transition: height 0.5s ease;
   z-index: -1;
 }

 .about .mission-vision-row .value-card:hover {
   transform: translateY(-10px);
 }

 .about .mission-vision-row .value-card:hover:before {
   height: 100%;
 }

 .about .mission-vision-row .value-card:hover .card-icon {
   background-color: #eeeded;
 }

 .about .mission-vision-row .value-card:hover .card-icon i {
   color: var(--accent-color);
 }

 .about .mission-vision-row .value-card .card-icon {
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: var(--accent-color);
   border-radius: 50%;
   margin-bottom: 1.5rem;
   transition: all 0.3s ease;
 }

 .about .mission-vision-row .value-card .card-icon i {
   font-size: 1.75rem;
   color: #fff;
   transition: color 0.3s ease;
 }

 .about .mission-vision-row .value-card h3 {
   margin-bottom: 1rem;
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--heading-color);
 }

 .about .mission-vision-row .value-card p {
   margin-bottom: 0;
   color: #000;
 }

 /*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
 .featured-programs .isotope-filters {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 40px;
   padding: 0;
   list-style: none;
 }

 .featured-programs .isotope-filters li {
   cursor: pointer;
   padding: 10px 20px;
   font-size: 0.95rem;
   font-weight: 500;
   border-radius: 50px;
   background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
   transition: all 0.3s ease;
 }

 .featured-programs .isotope-filters li:hover,
 .featured-programs .isotope-filters li.filter-active {
   background-color: var(--accent-color);
   color: var(--contrast-color);
 }

 .featured-programs .program-item {
   position: relative;
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
   background-color: var(--surface-color);
   margin-bottom: 30px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 100%;
 }

 .featured-programs .program-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
 }

 .featured-programs .program-item:hover .program-btn i {
   transform: translateX(5px);
 }

 .featured-programs .program-item:hover .program-image-wrapper img {
   transform: scale(1.1);
 }

 .featured-programs .program-badge {
   position: absolute;
   top: 15px;
   right: 15px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   font-size: 0.75rem;
   font-weight: 600;
   padding: 5px 12px;
   border-radius: 20px;
   z-index: 2;
 }

 .featured-programs .program-image-wrapper {
   height: 100%;
   overflow: hidden;
 }

 .featured-programs .program-image-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
 }

 .featured-programs .program-content {
   padding: 25px 20px;
   height: 100%;
   display: flex;
   flex-direction: column;
 }

 .featured-programs .program-content h3 {
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 12px;
 }

 .featured-programs .program-content p {
   font-size: 0.95rem;
   line-height: 1.6;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   margin-bottom: 15px;
 }

 .featured-programs .program-highlights {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 15px;
 }

 .featured-programs .program-highlights span {
   font-size: 0.8rem;
   color: color-mix(in srgb, var(--heading-color), transparent 30%);
   display: flex;
   align-items: center;
 }

 .featured-programs .program-highlights span i {
   margin-right: 5px;
   color: var(--accent-color);
   font-size: 0.9rem;
 }

 .featured-programs .program-btn {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   color: var(--accent-color);
   font-weight: 600;
   font-size: 0.95rem;
   transition: color 0.3s;
 }

 .featured-programs .program-btn span {
   position: relative;
 }

 .featured-programs .program-btn span:after {
   content: "";
   position: absolute;
   width: 0;
   height: 2px;
   bottom: -4px;
   left: 0;
   background-color: var(--accent-color);
   transition: width 0.3s ease;
 }

 .featured-programs .program-btn i {
   transition: transform 0.3s ease;
 }

 .featured-programs .program-btn:hover {
   color: color-mix(in srgb, var(--accent-color), transparent 25%);
 }

 .featured-programs .program-btn:hover span:after {
   width: 100%;
 }

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

 @media (max-width: 992px) {
   .featured-programs .isotope-filters {
     margin-bottom: 30px;
   }

   .featured-programs .isotope-filters li {
     padding: 8px 16px;
     font-size: 0.85rem;
   }
 }

 @media (max-width: 768px) {
   .featured-programs .program-image-wrapper {
     height: 200px;
   }

   .featured-programs .program-content {
     padding: 20px 15px;
   }

   .featured-programs .program-content h3 {
     font-size: 1.15rem;
   }

   .featured-programs .program-highlights {
     flex-direction: column;
     gap: 8px;
   }
 }

 /*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
 .testimonials {
   padding-top: 60px;
   padding-bottom: 60px;
 }

 .testimonials .testimonial-masonry {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   position: relative;
 }

 .testimonials .testimonial-masonry::before {
   content: "";
   position: absolute;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 95%), transparent);
   opacity: 0.5;
   z-index: -1;
 }

 .testimonials .testimonial-item:nth-child(3n-1) {
   margin-top: 3rem;
 }

 .testimonials .testimonial-item:nth-child(3n) {
   margin-top: 1.5rem;
 }

 .testimonials .testimonial-item.highlight .testimonial-content {
   background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
   border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .testimonials .testimonial-item.highlight .testimonial-content .quote-pattern {
   background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
 }

 .testimonials .testimonial-item.highlight .testimonial-content .quote-pattern i {
   color: var(--accent-color);
 }

 .testimonials .testimonial-content {
   background-color: var(--surface-color);
   border-radius: 20px;
   padding: 2rem;
   position: relative;
   transition: all 0.3s ease;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .testimonials .testimonial-content:hover {
   transform: translateY(-5px);
 }

 .testimonials .testimonial-content p {
   font-size: 1rem;
   line-height: 1.7;
   margin: 1.5rem 0;
   position: relative;
 }

 .testimonials .quote-pattern {
   position: absolute;
   top: -1.25rem;
   left: 2rem;
   width: 2.5rem;
   height: 2.5rem;
   background-color: var(--surface-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .testimonials .quote-pattern i {
   font-size: 1.25rem;
   color: var(--accent-color);
 }

 .testimonials .client-info {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-top: 1.5rem;
   padding-top: 1.5rem;
   border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
 }

 .testimonials .client-image {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   overflow: hidden;
   flex-shrink: 0;
 }

 .testimonials .client-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .testimonials .client-details h3 {
   font-size: 1.125rem;
   margin-bottom: 0.25rem;
 }

 .testimonials .client-details .position {
   font-size: 0.875rem;
   color: color-mix(in srgb, var(--heading-color), transparent 40%);
 }

 @media (max-width: 1199.98px) {
   .testimonials .testimonial-masonry {
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem;
   }

   .testimonials .testimonial-item:nth-child(3n-1),
   .testimonials .testimonial-item:nth-child(3n) {
     margin-top: 0;
   }

   .testimonials .testimonial-item:nth-child(even) {
     margin-top: 2rem;
   }
 }

 @media (max-width: 767.98px) {
   .testimonials .testimonial-masonry {
     grid-template-columns: 1fr;
     gap: 2rem;
   }

   .testimonials .testimonial-item:nth-child(even) {
     margin-top: 0;
   }

   .testimonials .testimonial-content {
     padding: 1.5rem;
   }

   .testimonials .testimonial-content p {
     font-size: 0.9375rem;
     margin: 1.25rem 0;
   }

   .testimonials .quote-pattern {
     width: 2.25rem;
     height: 2.25rem;
     top: -1.125rem;
   }

   .testimonials .quote-pattern i {
     font-size: 1.125rem;
   }

   .testimonials .client-info {
     margin-top: 1.25rem;
     padding-top: 1.25rem;
   }

   .testimonials .client-image {
     width: 45px;
     height: 45px;
   }

   .testimonials .client-details h3 {
     font-size: 1rem;
   }

   .testimonials .client-details .position {
     font-size: 0.8125rem;
   }
 }

 /*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
 .stats .stats-overview {
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .stats .stats-overview .stats-title {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
   font-weight: 700;
 }

 .stats .stats-overview .stats-description {
   margin-bottom: 1.5rem;
   font-size: 1.1rem;
   line-height: 1.8;
 }

 .stats .stats-overview .stats-cta {
   margin-top: 1rem;
   display: flex;
   gap: 1rem;
 }

 .stats .stats-overview .stats-cta .btn-primary {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: var(--contrast-color);
   padding: 0.75rem 1.5rem;
   font-weight: 600;
   transition: all 0.3s ease;
 }

 .stats .stats-overview .stats-cta .btn-primary:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
   border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
 }

 .stats .stats-overview .stats-cta .btn-outline {
   border: 2px solid var(--heading-color);
   color: var(--heading-color);
   padding: 0.75rem 1.5rem;
   font-weight: 600;
   background-color: transparent;
   transition: all 0.3s ease;
 }

 .stats .stats-overview .stats-cta .btn-outline:hover {
   border-color: var(--accent-color);
   color: var(--accent-color);
 }

 @media (max-width: 992px) {
   .stats .stats-overview {
     margin-bottom: 3rem;
   }
 }

 .stats .stats-card {
   background-color: var(--surface-color);
   border-radius: 1rem;
   padding: 2rem 1.5rem;
   text-align: center;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   transition: all 0.3s ease;
 }

 .stats .stats-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .stats .stats-card .stats-icon {
   margin-bottom: 1rem;
   font-size: 2.5rem;
   color: var(--accent-color);
 }

 .stats .stats-card .stats-number {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--heading-color);
   margin-bottom: 0.5rem;
   font-family: var(--heading-font);
   line-height: 1;
 }

 .stats .stats-card .stats-label {
   font-size: 1rem;
   font-weight: 600;
   color: var(--default-color);
 }

 .stats .achievements-gallery {
   margin-top: 2rem;
 }

 .stats .achievements-gallery .achievement-item {
   position: relative;
   border-radius: 0.75rem;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   height: 100%;
 }

 .stats .achievements-gallery .achievement-item img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   transition: all 0.5s ease;
 }

 .stats .achievements-gallery .achievement-item .achievement-content {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   padding: 1.5rem;
   background: linear-gradient(to top, rgba(0, 0, 0, 1.5), transparent);
 }

 .stats .achievements-gallery .achievement-item .achievement-content h4 {
   color: var(--contrast-color);
   margin-bottom: 0.5rem;
   font-weight: 600;
 }

 .stats .achievements-gallery .achievement-item .achievement-content p {
   color: color-mix(in srgb, var(--contrast-color), transparent 20%);
   margin-bottom: 0;
   font-size: 0.9rem;
 }

 .stats .achievements-gallery .achievement-item:hover img {
   transform: scale(1.1);
 }




 /*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
 .error-404 {
   padding: 100px 0;
   background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
 }

 .error-404 .error-wrapper {
   position: relative;
   overflow: hidden;
 }

 .error-404 .error-illustration {
   position: relative;
   height: 350px;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .error-404 .error-illustration i {
   font-size: 9rem;
   color: color-mix(in srgb, var(--accent-color), transparent 10%);
   position: relative;
   z-index: 2;
   animation: pulse 2s infinite;
 }

 .error-404 .error-illustration .circle {
   position: absolute;
   border-radius: 50%;
   opacity: 0.6;
 }

 .error-404 .error-illustration .circle.circle-1 {
   width: 200px;
   height: 200px;
   background: color-mix(in srgb, var(--accent-color), transparent 80%);
   animation: float 6s ease-in-out infinite;
 }

 .error-404 .error-illustration .circle.circle-2 {
   width: 120px;
   height: 120px;
   background: color-mix(in srgb, var(--heading-color), transparent 85%);
   top: 30%;
   left: 25%;
   animation: float 8s ease-in-out infinite;
 }

 .error-404 .error-illustration .circle.circle-3 {
   width: 80px;
   height: 80px;
   background: color-mix(in srgb, var(--accent-color), transparent 75%);
   bottom: 20%;
   right: 30%;
   animation: float 7s ease-in-out infinite reverse;
 }

 .error-404 .error-content {
   padding: 30px 0;
 }

 .error-404 .error-badge {
   display: inline-block;
   background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
   color: var(--accent-color);
   font-size: 0.9rem;
   font-weight: 600;
   padding: 0.5rem 1.5rem;
   border-radius: 30px;
   margin-bottom: 1.5rem;
   letter-spacing: 1px;
   text-transform: uppercase;
 }

 .error-404 .error-code {
   font-size: clamp(5rem, 10vw, 8rem);
   font-weight: 900;
   margin: 0;
   background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   line-height: 1;
   letter-spacing: -2px;
 }

 .error-404 .error-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: var(--heading-color);
   margin-bottom: 1.5rem;
 }

 .error-404 .error-description {
   font-size: 1.1rem;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
   margin-bottom: 2rem;
   line-height: 1.6;
 }

 .error-404 .error-actions {
   display: flex;
   gap: 1rem;
   margin-bottom: 2.5rem;
   flex-wrap: wrap;
 }

 .error-404 .error-actions .btn-home,
 .error-404 .error-actions .btn-help {
   padding: 0.8rem 1.8rem;
   border-radius: 8px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   transition: all 0.3s ease;
 }

 .error-404 .error-actions .btn-home i,
 .error-404 .error-actions .btn-help i {
   font-size: 1.2rem;
 }

 .error-404 .error-actions .btn-home {
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border: none;
 }

 .error-404 .error-actions .btn-home:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
   transform: translateY(-3px);
   box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .error-404 .error-actions .btn-help {
   background-color: transparent;
   color: var(--accent-color);
   border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
 }

 .error-404 .error-actions .btn-help:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   transform: translateY(-3px);
 }

 .error-404 .error-suggestions {
   padding: 1.5rem;
   background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
   border-radius: 12px;
 }

 .error-404 .error-suggestions h3 {
   font-size: 1.2rem;
   font-weight: 600;
   color: var(--heading-color);
   margin-bottom: 1rem;
 }

 .error-404 .error-suggestions ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .error-404 .error-suggestions ul li {
   margin-bottom: 0.8rem;
 }

 .error-404 .error-suggestions ul li:last-child {
   margin-bottom: 0;
 }

 .error-404 .error-suggestions ul li a {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   color: var(--default-color);
   font-size: 1.05rem;
   transition: all 0.3s;
 }

 .error-404 .error-suggestions ul li a i {
   color: var(--accent-color);
   font-size: 1.1rem;
   transition: transform 0.3s;
 }

 .error-404 .error-suggestions ul li a:hover {
   color: var(--accent-color);
 }

 .error-404 .error-suggestions ul li a:hover i {
   transform: translateX(3px);
 }

 @keyframes float {

   0%,
   100% {
     transform: translateY(0);
   }

   50% {
     transform: translateY(-20px);
   }
 }

 @keyframes pulse {

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

   50% {
     transform: scale(1.05);
   }
 }

 @media (max-width: 992px) {
   .error-404 .error-illustration {
     height: 300px;
     margin-bottom: 2rem;
   }
 }

 @media (max-width: 768px) {
   .error-404 {
     padding: 70px 0;
   }

   .error-404 .error-code {
     font-size: clamp(4rem, 12vw, 6rem);
   }

   .error-404 .error-title {
     font-size: 1.8rem;
   }

   .error-404 .error-actions {
     flex-direction: column;
   }

   .error-404 .error-actions .btn-home,
   .error-404 .error-actions .btn-help {
     width: 100%;
     justify-content: center;
   }
 }

 /*  */

 .map-wrapper iframe {
   border-radius: 0.5rem;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }


 #obfuscatedEmail a {
   color: #fff;
 }


 /*  */
 .cta-section {
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
     url('../img/call-to-action-locksmith-kirkland.webp') center center / cover no-repeat fixed;

   height: 450px;
 }

 .cta-section h2 {
   letter-spacing: 1px;
 }

 .cta-section a.btn {
   font-weight: 600;
   padding: 0.75rem 2rem;
 }

 /*  */
 .catchy-offer {
   background: #f8f9fa;
   padding: 60px 20px;
 }

 .catchy-offer-card {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 30px;
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
   padding: 30px;
 }

 .catchy-offer-content {
   flex: 1 1 50%;
 }

 .catchy-offer-content h2 {
   font-size: 2rem;
   color: #08915E;
   font-weight: 700;
 }

 .catchy-offer-content .highlight {
   color: #e63946;
 }

 .catchy-offer-content p {
   font-size: 1.1rem;
   margin-bottom: 15px;
 }

 .catchy-offer-badges {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
   gap: 15px;
   margin-bottom: 20px;
 }

 .badge {
   background: #08915E;
   color: #fff;
   padding: 10px;
   border-radius: 6px;
   text-align: center;
   font-size: 0.95rem;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
 }

 .badge span {
   font-size: 1.5rem;
   font-weight: bold;
   display: block;
 }

 /*  */
 .cta-wrapper {
   margin-top: 20px;
   text-align: left;
   /* Button aligned to the right under image */
 }

 @media (max-width: 768px) {
   .cta-wrapper {
     text-align: center;
     /* Center button on smaller devices */
     margin-top: 15px;
   }
 }

 .btn-claim-offer {
   background: linear-gradient(135deg, #08915E, #0fbf8e);
   color: #fff;
   padding: 12px 28px;
   font-size: 1rem;
   font-weight: 700;
   border-radius: 50px;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
   box-shadow: 0 6px 15px rgba(8, 145, 94, 0.3);
 }

 .btn-claim-offer:hover {
   background: linear-gradient(135deg, #0fbf8e, #08915E);
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(8, 145, 94, 0.4);
   color: #fff;
 }

 /*  */
 .catchy-offer-image {
   flex: 1 1 45%;
 }

 .catchy-offer-image img {
   width: 100%;
   border-radius: 8px;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 /* Responsive */
 @media (max-width: 768px) {
   .catchy-offer-card {
     flex-direction: column-reverse;
     text-align: center;
   }
 }

 /*  */


 /* Step Style   */
 #locksmith-steps {
   background: #f8f9fa;
 }

 .step-bar {
   display: flex;
   justify-content: space-around;
   align-items: center;
   margin-top: 20px;
   position: relative;
 }

 .step-bar::before {
   content: "";
   position: absolute;
   height: 6px;
   background: #000;
   width: 100%;
   top: 50%;
   z-index: 1;
   left: 0;
   transform: translateY(-50%);
 }

 .step {
   z-index: 2;
   background: #fff;
   border: 4px solid #000;
   border-radius: 50%;
   width: 60px;
   height: 60px;
   text-align: center;
   line-height: 52px;
   font-size: 24px;
   font-weight: bold;
   color: #000;
   transition: 0.3s ease;
 }

 .step.done {
   border-color: #343a40;
   background: #343a40;
   color: #fff;
 }

 .step.active {
   border-color: #08915e;
   background: #08915e;
   color: #fff;
 }

 .bar-commercial .step.active {
   background: #08915e;
   border-color: #08915e;
 }

 .bar-commercial .step.done {
   background: #343a40;
   border-color: #343a40;
 }

 .bar-automotive .step.active {
   background: #08915e;
   border-color: #08915e;
 }

 .bar-automotive .step.done {
   background: #343a40;
   border-color: #343a40;
 }

 .step-desc p {
   font-size: 1.1rem;
   color: #444;
 }

 .nav-tabs .nav-link {
   font-weight: 600;
   color: #198754;
 }

 .nav-tabs .nav-link.active {
   background-color: #198754;
   color: #fff;
 }

 /*  */


 /* diagonal section */
 .fade-creative {
   opacity: 0;
   transform: translateY(40px) scale(0.95);
   animation: fadeCreativeIn 1s forwards;
 }

 @keyframes fadeCreativeIn {
   to {
     opacity: 1;
     transform: translateY(0) scale(1);
   }
 }

 .object-fit-cover {
   object-fit: cover;
   width: 100%;
 }

 /*  */


 .timeline-step ul li {
   list-style-type: disc;
   margin-left: 1rem;
 }

 .timeline-step {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .timeline-step:hover {
   transform: translateY(-6px);
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
 }