 /* Fonts */
 :root {
   --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   --heading-font: "Nunito Sans", sans-serif;
   --nav-font: "Raleway", 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: #023e8a;
   /* Background color for the entire website, including individual sections */
   --default-color: rgb(255, 255, 255);
   /* Default color used for the majority of the text content across the entire website */
   --heading-color: #e0e9f2;
   /* Color for headings, subheadings and title throughout the website */
   --accent-color: #6bd425;
   /* 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: #164e977e;
   /* 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: #6bd425;
   /* Applied to main navmenu links when they are hovered over or active */
   --nav-mobile-background-color: #164e977e;
   /* Used as the background color for mobile navigation menu */
   --nav-dropdown-background-color: #164e97e0;
   /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
   --nav-dropdown-color: rgb(255, 255, 255);
   /* Used for navigation links of the dropdown items in the navigation menu. */
   --nav-dropdown-hover-color: #6bd425;
   /* 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: #0d1d26;
   --surface-color: #16262f;
 }

 .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);
   overflow-x: hidden;
 }

 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);
   color: var(--default-color);
   background-color: var(--background-color);
   padding: 20px 0;
   transition: all 0.5s;
   z-index: 997;
 }

 .header .header-container {
   background: #023e8a;
   border-radius: 50px;
   padding: 5px 25px 5px 30px;
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.6);
 }

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

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

 .header .logo h1 {
   font-size: 20px;
   margin: 0;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: var(--heading-color);
 }



 @media (max-width: 1200px) {
   .header {
     padding-top: 10px;
   }

   .header .header-container {
     margin-left: 10px;
     margin-right: 10px;
     padding: 10px 5px 10px 15px;
   }

   .header .logo {
     order: 1;
   }


   .header .navmenu {
     order: 3;
   }
 }

 /*--------------------------------------------------------------
# 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: 18px;
     font-family: var(--nav-font);
     font-weight: 600;
     display: flex;
     align-items: center;
     justify-content: space-between;
     white-space: nowrap;
     transition: 0.3s;
     letter-spacing: 1px;
   }

   .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: var(--nav-hover-color);
   }

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

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

   .navmenu .dropdown ul a {
     padding: 10px 20px;
     font-size: 15.5px;
     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: 19px;
     font-weight: 600;
     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;
   padding-bottom: 50px;
   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: 70px;
   margin-right: 6px;
 }

 .footer .footer-about .logo span {
   color: var(--heading-color);
   font-size: 30px;
   font-weight: 700;
   letter-spacing: 1px;
   font-family: var(--heading-font);
 }

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

 .footer .social-links a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   font-size: 16px;
   color: var(--accent-color);
   border: 1px solid var(--accent-color);
   margin-right: 10px;
   transition: 0.3s;
 }

 .footer .social-links a:hover {
   color: #fff !important;
   border: 1px solid #fff !important;

 }

 .footer span {
   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 20%);
   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-top: 25px;
   padding-bottom: 25px;
   background-color: color-mix(in srgb, var(--default-color), transparent 95%);
 }

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

 .footer a:hover {
   color: #000 !important;
   transition: 0.3s ease-in-out;
 }


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

 .scroll-top i {
   font-size: 24px;
   color: #000;
   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;
   bottom: 15px;
 }


 /*--------------------------------------------------------------
# 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::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
   z-index: 1;
 }

 .page-title h1 {
   font-size: 42px;
   font-weight: 700;
   margin-bottom: 10px;
 }

 .page-title .breadcrumbs ol {
   display: flex;
   flex-wrap: wrap;
   list-style: none;
   justify-content: center;
   padding: 0;
   margin: 0;
   font-size: 16px;
   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 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 {
   padding-bottom: 60px;
   position: relative;
 }

 .section-title h2 {
   font-size: 14px;
   font-weight: 500;
   padding: 0;
   line-height: 1px;
   margin: 0;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: color-mix(in srgb, var(--default-color), transparent 50%);
   position: relative;
   font-family: 'Handlee', cursive;
 }

 .section-title h2::after {
   content: "";
   width: 120px;
   height: 1px;
   display: inline-block;
   background: var(--accent-color);
   margin: 4px 10px;
 }

 .section-title div {
   color: var(--heading-color);
   margin: 0;
   margin: 0;
   font-size: 28px;
   font-weight: 700;
   text-transform: uppercase;
   font-family: var(--heading-font);
 }

 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 .hero {
   position: relative;
   min-height: 100vh;
   width: 100%;
   display: flex;
   align-items: center;
   overflow: hidden;
   padding: 100px 0;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   margin-top: 2%;
 }

 .hero::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image: linear-gradient(to right, rgba(2, 62, 138, 0.7), rgba(0, 0, 0, 0.4));
   z-index: 1;
 }


 .hero .container,
 .hero .container-fluid {
   position: relative;
   z-index: 2;
 }

 .hero .content-col {
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding-right: 3rem;
 }

 @media (max-width: 991px) {
   .hero .content-col {
     padding-right: 15px;
     margin-bottom: 3rem;
   }
 }

 .hero .main-heading {
   margin-bottom: 2rem;
 }

 .hero .main-heading h1 {
   font-size: 5rem;
   font-weight: 800;
   line-height: 1.1;
   letter-spacing: -1px;
   margin: 0;
   font-family: "Handlee", cursive;

 }

 @media (max-width: 1200px) {
   .hero .main-heading h1 {
     font-size: 4rem;
   }
 }

 @media (max-width: 767px) {
   .hero .main-heading h1 {
     font-size: 1.5rem;
     margin-top: 10%;
   }
 }

 @media (max-width: 480px) {
   .hero .main-heading h1 {
     font-size: 1.5rem;
   }
 }


 .hero .description {
   margin-bottom: 1rem;
 }

 .hero .description p {
   font-size: 1rem;
   line-height: 1.7;
   margin: 0;
 }

 .hero .cta-button .btn {
   display: inline-flex;
   align-items: center;
   padding: 0.75rem 1.5rem;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: #000;

 }

 .hero .cta-button .btn span {
   margin-right: 0.5rem;
 }

 .hero .cta-button .btn i {
   font-size:1rem;
   transition: transform 0.3s ease;
 }

 .hero .cta-button .btn:hover {
   background-color: transparent;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
   color: var(--default-color);
 }

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

 .hero .cta-button .btn2 {
   display: inline-flex;
   align-items: center;
   padding: 0.75rem 1.5rem;
   border-radius: 50px;
   font-size: 1rem;
   font-weight: 600;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   background-color: transparent;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 40%);
   color: var(--default-color);

 }

 .hero .cta-button .btn2 span {
   margin-right: 0.5rem;
 }

 .hero .cta-button .btn2 i {
   font-size: 1rem;
   transition: transform 0.3s ease;
 }

 .hero .cta-button .btn2:hover {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: #000;

 }

 .hero .cta-button .btn2:hover i {
   transform: translateX(5px);
 }

 
 .hero .visual-content {
   position: relative;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 @media (max-width: 991px) {
   .hero .visual-content {
     flex-direction: column;
   }
 }

 .hero .fluid-shape {
   position: relative;
   width: 100%;
   margin: 0 auto;
 }

 .hero .fluid-shape .fluid-img {
   width: 100%;
   height: auto;
   animation: float 6s ease-in-out infinite;
 }

 @keyframes float {
   0% {
     transform: translateY(0px);
   }

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

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

 .hero .stats-card {
   position: absolute;
   bottom: 10%;
   right: 0;
   background-color: var(--accent-color);
   backdrop-filter: blur(10px);
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
   border-radius: 10px;
   padding: 1.5rem;
   width: 300px;
   display: flex;
   flex-direction: column;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 @media (max-width: 991px) {
   .hero .stats-card {
     position: relative;
     bottom: auto;
     right: auto;
     margin-top: -7rem;
     width: 100%;
   }
 }

 .hero .stats-card .stats-label {
   margin-top: 0.5rem;
 }

 .hero .stats-card .stats-label p {
   font-size: 3rem;
   margin: 0;
   font-family: "Handlee", cursive;
   font-style: normal;

 }

 .hero .stats-card .stats-arrow {
   position: absolute;
   top: 1.5rem;
   right: 1.5rem;
 }

 .hero .stats-card .stats-arrow i {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   background-color: #000;
   border-radius: 50%;
   color: var(--accent-color);
   font-size: 1.5rem;
   transition: all 0.3s ease;
   font-weight: 800;
 }

 .hero .stats-card .stats-arrow a:hover {
   transform: translateY(-3px);
   background-color: #000;
 }

 

 /*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
 .about .about-image {
   border-radius: 8px;
   overflow: hidden;
 }

 .about .about-image .experience-badge {
   position: absolute;
   bottom: 30px;
   right: 0px;
   background: var(--accent-color);
   color: var(--contrast-color);
   padding: 1.5rem;
   border-radius: 8px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   text-align: center;
   min-width: 140px;
 }

 .about .about-image .experience-badge .years {
   font-size: 2.5rem;
   font-weight: 700;
   line-height: 1;
   display: block;
   margin-bottom: 5px;
   color: #000;
 }

 .about .about-image .experience-badge .text {
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: #000;
   font-weight: 600;
 }

 @media (max-width: 768px) {
   .about .about-image .experience-badge {
     right: 0;
     bottom: 20px;
     padding: 1rem;
     min-width: 120px;
   }

   .about .about-image .experience-badge .years {
     font-size: 2rem;
   }
 }

 .about .about-content span {
   font-size: 2.2rem;
   margin-bottom: 1.25rem;
   font-weight: 700;
   font-family: "Handlee", cursive;
 }

 @media (max-width: 768px) {
   .about .about-content span {
     font-size: 1.8rem;
   }
 }

 .about .about-content .lead {
   font-size: 1.15rem;
   margin-bottom: 1.25rem;
   color: color-mix(in srgb, var(--heading-color), transparent 30%);
 }

 .about .about-content p {
   margin-bottom: 1rem;
 }

 .about .about-content .feature-item {
   padding: 1.25rem;
   background-color: var(--surface-color);
   border-radius: 8px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   height: 100%;
   transition: all 0.3s ease;
 }

 .about .about-content .feature-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
 }

 .about .about-content .feature-item i {
   font-size: 1.75rem;
   color: var(--accent-color);
   margin-bottom: 0.75rem;
   display: block;
 }

 .about .about-content .feature-item h5 {
   font-size: 1.15rem;
   margin-bottom: 0.75rem;
   font-weight: 600;
 }

 .about .about-content .feature-item p {
   font-size: 0.9rem;
   margin-bottom: 0;
 }

 .about .about-content .btn-primary {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   padding: 0.5rem 1.5rem;
   border-radius: 50px;
   font-weight: 500;
   color: var(--contrast-color);
 }

 .about .about-content .btn-primary:hover {
   background-color: color-mix(in srgb, var(--accent-color), black 10%);
   border-color: color-mix(in srgb, var(--accent-color), black 10%);
 }

 .about .testimonial-section {
   border-top: 1px solid rgba(0, 0, 0, 0.08);
 }

 .about .testimonial-section .testimonial-intro span {
   font-size: 1.75rem;
   margin-bottom: 1.25rem;
   font-weight: 700;
   font-family: "Handlee", cursive;
 }

 .about .testimonial-section .testimonial-intro p {
   margin-bottom: 1.5rem;
 }

 .about .testimonial-section .testimonial-intro .swiper-nav-buttons {
   display: flex;
   gap: 10px;
 }

 .about .testimonial-section .testimonial-intro .swiper-nav-buttons button {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background-color: var(--surface-color);
   color: #6bd425;
   border: 1px solid rgba(0, 0, 0, 0.08);
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.3s ease;
 }

 .about .testimonial-section .testimonial-intro .swiper-nav-buttons button:hover {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: #000;
 }

 .about .testimonial-section .testimonial-intro .swiper-nav-buttons button i {
   font-size: 1.25rem;
 }

 .about .testimonial-section .testimonial-slider {
   overflow: hidden;
 }

 .about .testimonial-section .testimonial-slider .swiper-wrapper {
   height: auto !important;
 }

 .about .testimonial-section .testimonial-item {
   background-color: #ffffffe0;
   border-radius: 10px;
   padding: 2rem;
   box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
   height: 100%;
 }

 .about .testimonial-section .testimonial-item .rating {
   color: #f59403;
   font-size: 1rem;
 }

 .about .testimonial-section .testimonial-item p {
   font-style: italic;
   margin-bottom: 0;
   font-size: 1rem;
   line-height: 1.6;
   color: #000;
 }

 .about .testimonial-section .testimonial-item .client-info .client-img {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   margin-right: 15px;
   object-fit: cover;
 }

 .about .testimonial-section .testimonial-item .client-info span {
   font-weight: 400;
   color: #000;
 }

 /* .about .testimonial-section .testimonial-item .client-info span {
   font-size: 0.85rem;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
 } */


 /*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
 .steps .steps-wrapper {
   position: relative;
   padding: 20px 0;
 }

 .steps .steps-wrapper::before {
   content: "";
   position: absolute;
   width: 2px;
   /* background-color: color-mix(in srgb, var(--accent-color), transparent 85%); */
   top: 0;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
 }

 .steps .step-item {
   margin-bottom: 50px;
   width: 100%;
   position: relative;
 }

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

 .steps .step-item:nth-child(even) .step-content {
   flex-direction: row-reverse;
 }

 .steps .step-content {
   display: flex;
   align-items: center;
   gap: 30px;
 }

 .steps .step-icon {
   flex-shrink: 0;
   width: 80px;
   height: 80px;
   background-color: #000;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 1;
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
   /* border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%); */
   transition: all 0.3s ease-in-out;
 }

 .steps .step-icon svg {
   font-size: 32px;
   color: var(--accent-color);
   transition: transform 0.3s ease-in-out;
 }

 .steps .step-info {
   flex: 1;
   background-color: var(--surface-color);
   padding: 30px;
   border-radius: 8px;
   box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease-in-out;
 }

 .steps .step-info:hover {
   transform: translateY(-5px);
 }

 .steps .step-number {
   display: inline-block;
   font-family: var(--heading-font);
   font-size: 0.9rem;
   font-weight: 600;
   color: var(--accent-color);
   text-transform: uppercase;
   letter-spacing: 1px;
   margin-bottom: 10px;
 }

 .steps span {
   font-size: 1.3rem;
   margin-bottom: 15px;
   font-weight: 600;
   color: var(--heading-color);
 }

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

 @media (max-width: 991px) {
   .steps .steps-wrapper::before {
     left: 25px;
   }

   .steps .step-item .step-content {
     flex-direction: row !important;
   }

   .steps .step-icon {
     width: 60px;
     height: 60px;
   }

   .steps .step-icon i {
     font-size: 24px;
   }

   .steps .step-info {
     padding: 20px;
   }

   .steps h3 {
     font-size: 1.3rem;
   }
 }

 @media (max-width: 767px) {
   .steps .step-content {
     gap: 20px;
   }

   .steps .step-icon {
     width: 50px;
     height: 50px;
   }

   .steps .step-icon i {
     font-size: 20px;
   }

   .steps .step-info {
     padding: 15px;
   }

   .steps h3 {
     font-size: 1.2rem;
   }

   .steps p {
     font-size: 0.95rem;
   }
 }

 /*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
 .call-to-action {
   padding-top: 80px;
   position: relative;
   background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
   border-radius: 1rem;
   overflow: hidden;
   padding-bottom: 80px;
 }

 .call-to-action .badge {
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   color: var(--accent-color);
   padding: 0.5rem 1rem;
   font-size: 0.875rem;
   font-weight: 500;
   border-radius: 2rem;
 }

 .call-to-action h2 {
   font-size: clamp(1.75rem, 3vw, 2.5rem);
   font-weight: 700;
   line-height: 1.2;
   margin: 0;
 }

 .call-to-action p {
   font-size: 1.125rem;
   line-height: 1.6;
   opacity: 0.9;
 }

 .call-to-action .features .feature-item {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.5rem 1rem;
   background-color: var(--surface-color);
   border-radius: 0.5rem;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease;
 }

 .call-to-action .features .feature-item:hover {
   transform: translateY(-2px);
 }

 .call-to-action .features .feature-item i {
   color: var(--accent-color);
   font-size: 1.25rem;
 }

 .call-to-action .features .feature-item span {
   font-weight: 500;
 }

 .call-to-action .cta-buttons .btn {
   padding: 0.75rem 1.5rem;
   font-weight: 500;
   border-radius: 0.5rem;
   transition: all 0.3s ease;
 }

 .call-to-action .cta-buttons .btn.btn-primary {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: var(--contrast-color);
 }

 .call-to-action .cta-buttons .btn.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%);
   transform: translateY(-2px);
 }

 .call-to-action .cta-buttons .btn.btn-outline {
   border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
   color: var(--accent-color);
 }

 .call-to-action .cta-buttons .btn.btn-outline:hover {
   background-color: var(--accent-color);
   border-color: var(--accent-color);
   color: var(--contrast-color);
   transform: translateY(-2px);
 }

 .call-to-action .content-right {
   flex-shrink: 0;
   max-width: 100%;
   width: 450px;
 }

 .call-to-action .content-right img {
   width: 100%;
   height: auto;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .call-to-action .content-right .floating-card {
   position: absolute;
   bottom: 2rem;
   right: -1rem;
   background: var(--surface-color);
   padding: 1rem;
   border-radius: 1rem;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   gap: 1rem;
   animation: float 3s ease-in-out infinite;
 }

 .call-to-action .content-right .floating-card .card-icon {
   width: 3rem;
   height: 3rem;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   border-radius: 0.75rem;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .call-to-action .content-right .floating-card .card-icon i {
   color: var(--accent-color);
   font-size: 1.5rem;
 }

 .call-to-action .content-right .floating-card .card-content {
   display: flex;
   flex-direction: column;
 }

 .call-to-action .content-right .floating-card .card-content .stats-number {
   font-size: 1.25rem;
   font-weight: 700;
   color: var(--accent-color);
 }

 .call-to-action .content-right .floating-card .card-content .stats-text {
   font-size: 0.875rem;
   opacity: 0.8;
 }

 .call-to-action .decoration {
   position: absolute;
   inset: 0;
   pointer-events: none;
   overflow: hidden;
   z-index: 0;
 }

 .call-to-action .decoration .circle-1,
 .call-to-action .decoration .circle-2 {
   position: absolute;
   border-radius: 50%;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
 }

 .call-to-action .decoration .circle-1 {
   width: 300px;
   height: 300px;
   top: -150px;
   right: -150px;
   opacity: 0.5;
 }

 .call-to-action .decoration .circle-2 {
   width: 200px;
   height: 200px;
   bottom: -100px;
   left: -100px;
   opacity: 0.3;
 }

 @media (max-width: 991.98px) {
   .call-to-action {
     padding: 2rem;
   }

   .call-to-action .content-right {
     width: 100%;
     margin-top: 2rem;
   }

   .call-to-action .content-right .floating-card {
     position: relative;
     bottom: auto;
     right: auto;
     margin-top: -3rem;
     margin-right: 1rem;
     z-index: 1;
   }
 }

 @keyframes float {

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

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


 /*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
 .pricing {
   --card-border-radius: 20px;
 }

 .pricing .row {
   justify-content: center;
 }

 .pricing .pricing-card {
   height: 100%;
   background: var(--surface-color);
   border-radius: var(--card-border-radius);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   overflow: hidden;
   position: relative;
   transition: all 0.4s;
   margin-bottom: 30px;
   display: flex;
   flex-direction: column;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
 }

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

 .pricing .pricing-card.popular {
   border: 2px solid var(--accent-color);
 }

 .pricing .pricing-card.popular .plan-cta .btn-plan {
   background-color: var(--accent-color);
   color: var(--contrast-color);
 }

 .pricing .pricing-card.popular .plan-cta .btn-plan:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
 }

 .pricing .pricing-card .popular-tag {
   position: absolute;
   top: 20px;
   right: -35px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   font-size: 13px;
   font-weight: 600;
   padding: 8px 40px;
   transform: rotate(45deg);
 }

 .pricing .plan-header {
   padding: 30px 30px 20px;
   text-align: center;
 }

 .pricing .plan-header .plan-icon {
   width: 70px;
   height: 70px;
   margin: 0 auto 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
 }

 .pricing .plan-header .plan-icon i {
   font-size: 28px;
   color: var(--accent-color);
 }

 .pricing .plan-header h3 {
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 10px;
 }

 .pricing .plan-header p {
   font-size: 15px;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .pricing .plan-pricing {
   text-align: center;
   padding: 10px 30px 20px;
   position: relative;
 }

 .pricing .plan-pricing .currency {
   font-size: 24px;
   vertical-align: top;
   line-height: 1;
   color: var(--heading-color);
   font-weight: 600;
 }

 .pricing .plan-pricing .amount {
   font-size: 60px;
   font-weight: 700;
   color: var(--heading-color);
   line-height: 1;
 }

 .pricing .plan-pricing .period {
   font-size: 16px;
   color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .pricing .plan-features {
   padding: 20px 30px;
   flex: 1;
 }

 .pricing .plan-features ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .pricing .plan-features ul li {
   padding: 12px 0;
   font-size: 15px;
   display: flex;
   align-items: center;
   gap: 10px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .pricing .plan-features ul li.disabled {
   color: color-mix(in srgb, var(--default-color), transparent 60%);
 }

 .pricing .plan-features ul li i {
   font-size: 18px;
 }

 .pricing .plan-features ul li i.bi-check-circle-fill {
   color: var(--accent-color);
 }

 .pricing .plan-features ul li i.bi-x-circle-fill {
   color: color-mix(in srgb, var(--default-color), transparent 60%);
 }

 .pricing .plan-cta {
   padding: 10px 30px 30px;
   text-align: center;
 }

 .pricing .plan-cta .btn-plan {
   display: inline-block;
   width: 100%;
   padding: 14px 32px;
   background-color: color-mix(in srgb, var(--default-color), transparent 95%);
   color: var(--default-color);
   border-radius: 50px;
   font-size: 16px;
   font-weight: 600;
   transition: all 0.3s;
 }

 .pricing .plan-cta .btn-plan:hover {
   background-color: color-mix(in srgb, var(--default-color), transparent 80%);
 }

 @media (max-width: 992px) {
   .pricing .pricing-card {
     max-width: 400px;
     margin-left: auto;
     margin-right: auto;
   }
 }

 @media (max-width: 768px) {
   .pricing .plan-pricing .amount {
     font-size: 48px;
   }

   .pricing .plan-header {
     padding: 25px 20px 15px;
   }

   .pricing .plan-features,
   .pricing .plan-pricing,
   .pricing .plan-cta {
     padding-left: 20px;
     padding-right: 20px;
   }
 }


 /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
 .contact .contact-info-box {
   background-color: var(--surface-color);
   border-radius: 10px;
   box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
   padding: 25px;
   height: 100%;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   align-items: flex-start;
   gap: 15px;
 }

 .contact .contact-info-box:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 }

 .contact .contact-info-box .icon-box {
   background-color: #000;
   color: var(--accent-color);
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }

 .contact .contact-info-box .icon-box i {
   font-size: 24px;
 }

 .contact .contact-info-box .info-content span {
   font-size: 18px;
   font-weight: 600;
   margin-bottom: 10px;
 }

 .contact .contact-info-box .info-content p {
   margin-bottom: 5px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   font-size: 15px;
   line-height: 1.5;
 }

 .contact .contact-info-box .info-content p:last-child {
   margin-bottom: 0;
 }

 .contact .map-section {
   position: relative;
   width: 100%;
   height: 500px;
   overflow: hidden;
 }

 .contact .map-section iframe {
   display: block;
   width: 100%;
   height: 100%;
   border: 0;
 }

 .map-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #023E8A;
   opacity: 0.2;
   /* Adjust opacity as needed */
   z-index: 2;
   pointer-events: none;
 }

 .contact .form-container-overlap {
   position: relative;
   margin-top: -150px;
   margin-bottom: 60px;
   z-index: 10;
 }

 .contact .contact-form-wrapper {
   background-color: var(--background-color);
   border-radius: 12px;
   box-shadow: 0 5px 25px rgba(0, 0, 0, 1.05);
   padding: 40px;
 }

 .contact .contact-form-wrapper h2 {
   font-size: 28px;
   font-weight: 700;
   margin-bottom: 30px;
   position: relative;
 }

 .contact .contact-form-wrapper h2:after {
   content: "";
   position: absolute;
   left: 50%;
   bottom: -10px;
   transform: translateX(-50%);
   width: 50px;
   height: 3px;
   background-color: var(--accent-color);
 }

 .contact .contact-form-wrapper .form-group {
   margin-bottom: 20px;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon {
   position: relative;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon i {
   position: absolute;
   left: 15px;
   top: 50%;
   transform: translateY(-50%);
   color: #6bd425;
   font-size: 18px;
   z-index: 10;
   font-weight: bold;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
   top: 28px;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
   top: 25px;
   transform: none;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon .form-control {
   border-radius: 8px;
   padding: 12px 15px 12px 45px;
   height: 3.5rem;
   color: var(--default-color);
   background-color: var(--surface-color);
   font-size: 15px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
 }

 .contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
   border-color: var(--accent-color);
   box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
 }

 .contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
   color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
   height: 180px;
   resize: none;
   padding-top: 15px;
 }

 .contact .contact-form-wrapper .btn-submit {
   background-color: var(--accent-color);
   border: none;
   color: #000;
   padding: 12px 30px;
   font-size: 16px;
   font-weight: 600;
   letter-spacing: 1px;
   border-radius: 8px;
   transition: all 0.3s ease;
   box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .contact .contact-form-wrapper .btn-submit:hover {
   background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
   transform: translateY(-3px);
   box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
 }

 .contact .contact-form-wrapper .btn-submit:active {
   transform: translateY(0);
   box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
 }


 @media (max-width: 992px) {
   .contact .form-container-overlap {
     margin-top: -120px;
   }

   .contact .contact-form-wrapper {
     padding: 30px;
   }
 }

 @media (max-width: 768px) {
   .contact .contact-info-box {
     margin-bottom: 20px;
   }

   .contact .form-container-overlap {
     margin-top: -100px;
   }

   .contact .contact-form-wrapper {
     padding: 25px;
   }

   .contact .contact-form-wrapper h2 {
     font-size: 24px;
   }

   .contact .map-section {
     height: 450px;
   }
 }

 @media (max-width: 576px) {
   .contact .form-container-overlap {
     margin-top: -80px;
   }

   .contact .contact-form-wrapper {
     padding: 20px;
   }

   .contact .btn-submit {
     width: 100%;
   }

   .contact .map-section {
     height: 400px;
   }
 }


 /*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
 .service-details .swiper-wrapper {
   height: auto !important;
 }

 .service-details .service-header {
   margin-bottom: 40px;
 }

 .service-details .service-header h1 {
   font-size: 36px;
   font-weight: 700;
   margin-bottom: 20px;
   position: relative;
 }

 .service-details .service-header h1:after {
   content: "";
   position: absolute;
   bottom: -12px;
   left: 0;
   width: 80px;
   height: 4px;
   background: var(--accent-color);
 }

 .service-details .service-header .service-meta {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 20px;
   margin-top: 25px;
 }

 .service-details .service-header .service-meta span {
   display: flex;
   align-items: center;
   font-size: 15px;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
 }

 .service-details .service-header .service-meta span i {
   color: var(--accent-color);
   margin-right: 8px;
   font-size: 16px;
 }

 .service-details .service-header .lead {
   font-size: 18px;
   line-height: 1.7;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
 }

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

 .service-details .service-tabs .nav-tabs {
   border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
   margin-bottom: 30px;
 }

 .service-details .service-tabs .nav-tabs .nav-item {
   margin-right: 5px;
 }

 .service-details .service-tabs .nav-tabs .nav-link {
   border: none;
   border-radius: 0;
   padding: 12px 20px;
   font-weight: 600;
   color: color-mix(in srgb, var(--heading-color), transparent 30%);
   position: relative;
   transition: all 0.3s;
   display: flex;
   align-items: center;
 }

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

 .service-details .service-tabs .nav-tabs .nav-link:after {
   content: "";
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 0;
   height: 3px;
   background-color: var(--accent-color);
   transition: all 0.3s ease;
 }

 .service-details .service-tabs .nav-tabs .nav-link:hover {
   color: var(--heading-color);
   background-color: transparent;
 }

 .service-details .service-tabs .nav-tabs .nav-link:hover:after {
   width: 30%;
 }

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

 .service-details .service-tabs .nav-tabs .nav-link.active:after {
   width: 100%;
 }

 .service-details .service-tabs .tab-content .content-block h3 {
   font-size: 24px;
   margin-bottom: 20px;
   font-weight: 700;
 }

 .service-details .service-tabs .tab-content .content-block p {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   margin-bottom: 15px;
   line-height: 1.7;
 }

 .service-details .service-tabs .tab-content img {
   border-radius: 10px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
 }

 .service-details .service-tabs .tab-content .process-timeline {
   position: relative;
   padding-left: 30px;
 }

 .service-details .service-tabs .tab-content .process-timeline:before {
   content: "";
   position: absolute;
   top: 10px;
   bottom: 10px;
   left: 15px;
   width: 2px;
   background: color-mix(in srgb, var(--accent-color), transparent 80%);
 }

 .service-details .service-tabs .tab-content .process-timeline .timeline-item {
   position: relative;
   padding-bottom: 35px;
 }

 .service-details .service-tabs .tab-content .process-timeline .timeline-item:last-child {
   padding-bottom: 0;
 }

 .service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-marker {
   position: absolute;
   left: -30px;
   top: -5px;
   width: 32px;
   height: 32px;
   background-color: var(--accent-color);
   color: var(--contrast-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 14px;
   z-index: 2;
 }

 .service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content {
   padding-left: 10px;
 }

 .service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content h4 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 10px;
 }

 .service-details .service-tabs .tab-content .process-timeline .timeline-item .timeline-content p {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   line-height: 1.6;
 }

 .service-details .service-tabs .tab-content .benefit-card {
   background-color: var(--surface-color);
   border-radius: 12px;
   padding: 30px;
   transition: all 0.3s ease;
   height: 100%;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
   position: relative;
   overflow: hidden;
 }

 .service-details .service-tabs .tab-content .benefit-card:before {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 3px;
   background: var(--accent-color);
   transform: scaleX(0);
   transform-origin: right;
   transition: transform 0.5s ease;
 }

 .service-details .service-tabs .tab-content .benefit-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
 }

 .service-details .service-tabs .tab-content .benefit-card:hover:before {
   transform: scaleX(1);
   transform-origin: left;
 }

 .service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon {
   transform: rotateY(180deg);
   background-color: var(--accent-color);
 }

 .service-details .service-tabs .tab-content .benefit-card:hover .benefit-icon i {
   color: var(--contrast-color);
 }

 .service-details .service-tabs .tab-content .benefit-card .benefit-icon {
   width: 60px;
   height: 60px;
   border-radius: 12px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   transition: all 0.5s ease;
 }

 .service-details .service-tabs .tab-content .benefit-card .benefit-icon i {
   font-size: 28px;
   color: var(--accent-color);
   transition: all 0.5s ease;
 }

 .service-details .service-tabs .tab-content .benefit-card h4 {
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 12px;
 }

 .service-details .service-tabs .tab-content .benefit-card p {
   color: color-mix(in srgb, var(--default-color), transparent 20%);
   margin-bottom: 0;
 }

 .service-details .service-gallery h3 {
   font-size: 26px;
   margin-bottom: 25px;
   font-weight: 700;
 }

 .service-details .service-gallery .service-details-slider {
   margin-bottom: 40px;
   padding-bottom: 40px;
 }

 .service-details .service-gallery .service-details-slider .portfolio-item {
   position: relative;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
 }

 .service-details .service-gallery .service-details-slider .portfolio-item:hover .portfolio-info {
   opacity: 1;
   transform: translateY(0);
 }

 .service-details .service-gallery .service-details-slider .portfolio-item img {
   border-radius: 12px;
   transition: all 0.4s ease;
 }

 .service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
   padding: 30px 20px 20px;
   opacity: 0;
   transform: translateY(20px);
   transition: all 0.3s ease;
   border-bottom-left-radius: 12px;
   border-bottom-right-radius: 12px;
 }

 .service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info h5 {
   color: var(--contrast-color);
   font-weight: 700;
   margin-bottom: 5px;
 }

 .service-details .service-gallery .service-details-slider .portfolio-item .portfolio-info p {
   color: color-mix(in srgb, var(--contrast-color), transparent 20%);
   margin: 0;
   font-size: 14px;
 }

 .service-details .service-gallery .service-details-slider .swiper-pagination {
   padding-top: 5px;
   bottom: 0;
 }

 .service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
   opacity: 1;
 }

 .service-details .service-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
   width: 25px;
   border-radius: 5px;
   background-color: var(--accent-color);
 }

 .service-details .service-sidebar {
   position: sticky;
   top: 100px;
 }

 .service-details .service-sidebar .action-card {
   background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
   border-radius: 15px;
   padding: 35px 30px;
   color: var(--contrast-color);
   margin-bottom: 30px;
   position: relative;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   text-align: center;
 }

 .service-details .service-sidebar .action-card:before {
   content: "";
   position: absolute;
   top: -50px;
   right: -50px;
   width: 100px;
   height: 100px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.1);
   z-index: 1;
 }

 .service-details .service-sidebar .action-card:after {
   content: "";
   position: absolute;
   bottom: -40px;
   left: -40px;
   width: 80px;
   height: 80px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.08);
   z-index: 1;
 }

 .service-details .service-sidebar .action-card h3 {
   color: var(--contrast-color);
   font-size: 24px;
   font-weight: 700;
   margin-bottom: 15px;
 }

 .service-details .service-sidebar .action-card p {
   margin-bottom: 25px;
   opacity: 0.9;
 }

 .service-details .service-sidebar .action-card .btn-primary {
   background-color: var(--contrast-color);
   color: var(--accent-color);
   border: none;
   border-radius: 8px;
   padding: 12px 25px;
   font-weight: 600;
   display: inline-block;
   transition: all 0.3s ease;
 }

 .service-details .service-sidebar .action-card .btn-primary:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
 }

 .service-details .service-sidebar .action-card .guarantee {
   display: block;
   margin-top: 20px;
   font-size: 14px;
   opacity: 0.8;
 }

 .service-details .service-sidebar .action-card .guarantee i {
   margin-right: 5px;
 }

 .service-details .service-sidebar .service-features-list {
   background-color: var(--surface-color);
   border-radius: 15px;
   padding: 30px;
   margin-bottom: 30px;
   box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
 }

 .service-details .service-sidebar .service-features-list h4 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 25px;
   padding-bottom: 15px;
   border-bottom: 2px solid color-mix(in srgb, var(--heading-color), transparent 90%);
 }

 .service-details .service-sidebar .service-features-list ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }

 .service-details .service-sidebar .service-features-list ul li {
   display: flex;
   align-items: flex-start;
   margin-bottom: 25px;
 }

 .service-details .service-sidebar .service-features-list ul li:last-child {
   margin-bottom: 0;
 }

 .service-details .service-sidebar .service-features-list ul li i {
   flex-shrink: 0;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   color: var(--accent-color);
   width: 42px;
   height: 42px;
   border-radius: 8px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   margin-right: 15px;
 }

 .service-details .service-sidebar .service-features-list ul li div {
   flex: 1;
 }

 .service-details .service-sidebar .service-features-list ul li div h5 {
   font-size: 16px;
   font-weight: 700;
   margin-bottom: 5px;
 }

 .service-details .service-sidebar .service-features-list ul li div p {
   color: color-mix(in srgb, var(--default-color), transparent 25%);
   margin: 0;
   font-size: 14px;
 }

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

 .service-details .service-sidebar .testimonial-card .testimonial-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 20px;
 }

 .service-details .service-sidebar .testimonial-card .testimonial-header i {
   font-size: 36px;
   color: var(--accent-color);
   opacity: 0.3;
 }

 .service-details .service-sidebar .testimonial-card .testimonial-header .rating {
   display: flex;
 }

 .service-details .service-sidebar .testimonial-card .testimonial-header .rating i {
   color: #FFD700;
   font-size: 16px;
   opacity: 1;
   margin-left: 2px;
 }

 .service-details .service-sidebar .testimonial-card .testimonial-text {
   font-style: italic;
   line-height: 1.7;
   margin-bottom: 20px;
   color: color-mix(in srgb, var(--default-color), transparent 15%);
 }

 .service-details .service-sidebar .testimonial-card .client-info {
   display: flex;
   align-items: center;
 }

 .service-details .service-sidebar .testimonial-card .client-info .client-image {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 15px;
 }

 .service-details .service-sidebar .testimonial-card .client-info .client-details h5 {
   font-size: 16px;
   font-weight: 700;
   margin: 0 0 5px;
 }

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

 .service-details .service-sidebar .contact-info {
   background-color: var(--surface-color);
   border-radius: 15px;
   padding: 30px;
   box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
 }

 .service-details .service-sidebar .contact-info h4 {
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 25px;
 }

 .service-details .service-sidebar .contact-info .contact-method {
   display: flex;
   align-items: flex-start;
   margin-bottom: 20px;
 }

 .service-details .service-sidebar .contact-info .contact-method:last-child {
   margin-bottom: 0;
 }

 .service-details .service-sidebar .contact-info .contact-method i {
   flex-shrink: 0;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
   color: var(--accent-color);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   margin-right: 15px;
 }

 .service-details .service-sidebar .contact-info .contact-method div {
   flex: 1;
 }

 .service-details .service-sidebar .contact-info .contact-method div span {
   display: block;
   font-size: 14px;
   color: color-mix(in srgb, var(--default-color), transparent 30%);
   margin-bottom: 5px;
 }

 .service-details .service-sidebar .contact-info .contact-method div p {
   margin: 0;
   font-weight: 600;
   color: var(--heading-color);
 }

 @media (max-width: 991px) {
   .service-details .service-sidebar {
     position: relative;
     top: 0;
     margin-bottom: 40px;
   }

   .service-details .service-header h1 {
     font-size: 30px;
   }
 }

 @media (max-width: 767px) {
   .service-details .service-tabs .nav-tabs {
     flex-wrap: nowrap;
     overflow-x: auto;
   }

   .service-details .service-tabs .nav-tabs .nav-link {
     white-space: nowrap;
     padding: 10px 15px;
     font-size: 14px;
   }

   .service-details .service-tabs .nav-tabs .nav-link i {
     font-size: 16px;
   }

   .service-details .service-header h1 {
     font-size: 26px;
   }

   .service-details .service-header .service-meta {
     gap: 15px;
   }

   .service-details .service-header .service-meta span {
     font-size: 14px;
   }

   .service-details .service-header .lead {
     font-size: 16px;
   }
 }





 #obfuscatedEmail a {
   font-size: 11.5px;
   color: color-mix(in srgb, var(--default-color), transparent 20%);
 }


 /*  */


 .repair-highlight {
   background-color: #f0f8ff;
 }

 .section-heading {
   font-size: 32px;
   font-weight: bold;
   color: #023E8A;
 }

 .repair-box {
   transition: transform 0.3s ease;
 }

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

 .icon-circle {
   width: 50px;
   height: 50px;
   background-color: #e7f3ff;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
 }

 .summary-box {
   border-left: 4px solid #6BD425;
 }



 /*  */

 .brand-marquee-section {

   overflow: hidden;
   background-color: #E0E7F1;
   padding: 40px 0;
 }

 .marquee-track {
   display: flex;
   width: 100%;
   overflow: hidden;
 }

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

 .marquee-content img {
   height: 60px;
   margin: 0 30px;
   /* filter: brightness(0) invert(1);  */
   transition: transform 0.3s;
 }

 .marquee-content img:hover {
   transform: scale(1.1);
 }

 @keyframes scroll-marquee {
   0% {
     transform: translateX(0%);
   }

   100% {
     transform: translateX(-50%);
   }
 }


 /*  */
 .section-opener-diagnostics {
   background: #f1f9ff;
 }

 .section-opener-diagnostics .card {
   border-radius: 20px;
 }

 .diagnostic-icon-box {
   position: absolute;
   bottom: -20px;
   left: 50%;
   transform: translateX(-50%);
   background: #6bd425;
   color: #fff;
   padding: 14px;
   border-radius: 50%;
   font-size: 28px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }


 /*  */



 #offers .btn:hover {
   background-color: #6BD425 !important;
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
   color: #000 !important;

 }

 /* faq */
 .accordion-button {
   font-size: 1.05rem;
   padding: 1rem 1.25rem;
   transition: background 0.3s ease;
 }

 .accordion-button:not(.collapsed) {
   background-color: #e6fbd9;
   color: #0a2540;
 }

 .accordion-body {
   font-size: 0.95rem;
   line-height: 1.6;
   color: #333;
 }