/**
* Template Name: Gp
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Updated: Aug 15 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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 - Chromatic Aberration Theme with RGB Color Scheme */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* 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: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  
  /* Chromatic Aberration RGB Colors */
  --rgb-red: #ff0040;
  --rgb-green: #00ff40;
  --rgb-blue: #0040ff;
  --rgb-cyan: #00ffff;
  --rgb-magenta: #ff00ff;
  --rgb-yellow: #ffff00;
  
  /* Glassmorphism Colors */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Guarantee Highlight (Homepage)
--------------------------------------------------------------*/
.guarantee-highlight {
  position: relative;
  display: inline-block;
  padding-bottom: 6px; /* space for underline */
}

.guarantee-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  /* Single underline using theme RGB combination (no color switching) */
  background: linear-gradient(90deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
  box-shadow: 0 0 14px color-mix(in srgb, var(--rgb-blue), transparent 55%);
  transform: translateZ(0);
  animation: guarantee-underline-blink 1.05s steps(2, end) infinite;
}

@keyframes guarantee-underline-blink {
  0%,
  100% {
    opacity: 1;
    filter: saturate(1.2);
  }
  50% {
    opacity: 0.15;
    filter: saturate(1.6);
  }
}

/* Nav Menu Colors - Chromatic Aberration Theme */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #00ffff; /* Applied to main navmenu links when they are hovered over or active - Cyan for RGB theme */
  --nav-mobile-background-color: rgba(0, 0, 0, 0.95); /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: rgba(0, 0, 0, 0.95); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00ffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

  /* Optional: additional styles */
  .modal-header {
    background-color: #ffc451;
    color: #fff;
}
.modal-footer {
    background-color: #f8f9fa;
}

.custom-btn {
      background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
      background-size: 200% 200%;
      animation: rgbShift 3s ease infinite;
      color: #fff; /* Text color */
      border: 2px solid transparent;
      padding: 10px 20px; /* Padding for button size */
      border-radius: 5px; /* Rounded corners */
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 64, 255, 0.3), 
                  0 -4px 15px rgba(255, 0, 64, 0.3);
      transition: all 0.3s ease;
  }
  
  .custom-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 64, 255, 0.4), 
                  0 -6px 20px rgba(255, 0, 64, 0.4);
      color: #fff; /* Keep text color */
  }

  /* css for whatsapp api */
  .whatsapp-section {
    padding-left: 40px;
    padding-right: 40px;
}

.whatsapp-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
}

.whatsapp-section img {
    height: auto;
    max-height: 100%; /* To align with text height */
}

.whatsapp-section .content {
    text-align: justify;
}

/* WhatsApp API Link Button */
.whatsapp-api-link-btn {
  background-color: #25D366;
  border-color: #25D366;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 3px solid transparent; /* thicker border for better visibility */
  transition: all 0.3s ease;
  position: relative;
}

/* Disable global link underline effect for this button */
.whatsapp-api-link-btn::after {
  content: none;
}

.text-center.mt-2 {
  margin-top: 0.75rem !important;
}

.whatsapp-api-link-btn:hover {
  background-color: #20ba5a;
  border-color: var(--rgb-yellow);
  border-width: 3px;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.15),   /* subtle dark outline to separate border from background */
    0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-api-link-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
    gap: 6px;
  }
}

@media (max-width: 576px) {
  .whatsapp-api-link-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    gap: 5px;
    width: 90%;
    max-width: 280px;
    justify-content: center;
  }
  
  .whatsapp-api-link-btn .bi-whatsapp {
    font-size: 1rem;
  }
}  
  
/* External CSS */
.dynamic-button {
display: inline-block;
padding: 5px 10px;
color: #000;
border: 2px solid;
border-image: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) 1;
background-color: transparent;
box-shadow: 0 2px 8px rgba(0, 64, 255, 0.2);
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.dynamic-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
transition: left 0.3s ease;
z-index: -1;
}

.dynamic-button:hover::before {
left: 0;
}

.dynamic-button:hover {
color: #fff;
box-shadow: 0 4px 15px rgba(0, 64, 255, 0.4), 
            0 -4px 15px rgba(255, 0, 64, 0.4);
transform: translateY(-2px);
}
.button-container {
padding-top: 325px; /* Adjust the value as per your requirement */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.simple-button {
  background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
  background-size: 200% 200%;
  animation: rgbShift 3s ease infinite;
  color: #fff; /* Text color */
  border: 2px solid transparent;
  padding: 10px 20px; /* Padding for button size */
  border-radius: 5px; /* Rounded corners */
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 64, 255, 0.3), 
              0 -4px 15px rgba(255, 0, 64, 0.3),
              4px 0 15px rgba(0, 255, 64, 0.3);
  transition: all 0.3s ease;
}

.simple-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.simple-button:hover::before {
  left: 100%;
}

.simple-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 64, 255, 0.4), 
              0 -6px 20px rgba(255, 0, 64, 0.4),
              6px 0 20px rgba(0, 255, 64, 0.4);
}

@keyframes rgbShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Global Dark Mode Theme
 * When the body has the .dark-mode class, override key CSS variables.
 * This keeps most existing styling intact while switching colors.
 */
body.dark-mode {
  --background-color: #060606;
  --default-color: #f1f1f1;
  --heading-color: #ffffff;
  --surface-color: #151515;
  --contrast-color: #f9f9f9;
}

body.dark-mode {
  background-color: var(--background-color);
  color: var(--default-color);
}

body.dark-mode #header,
body.dark-mode #footer {
  background-color: #000000;
}

/* Theme toggle button in header */
.theme-toggle-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.theme-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

body.dark-mode .theme-toggle-btn {
  border-color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.08);
}

.theme-toggle-btn .theme-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}


/* about page css */
#header {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) 1;
  position: fixed; /* Ensure header is fixed at the top */
  width: 100%; /* Ensure header spans full width */
  z-index: 1000; /* Ensure header is above other content */
  box-shadow: 0 2px 20px rgba(0, 64, 255, 0.2), 
              0 -2px 20px rgba(255, 0, 64, 0.2);
}

.main {
  margin-top: 70px; /* Adjust this value as needed */
}

.content-section {
  padding: 40px 20px;
  text-align: center;
  background-color: white; /* Optional for better visibility */
  border: 1px solid red; /* Optional for debugging */
}
  .icon-small {
    width: 50px; /* Adjust the size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px; /* Optional: Adjust space below the icon */
  }

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# hero section css
--------------------------------------------------------------*/

.logo-slider-section {
  padding: 20px 0;
  /* background-color: #f9f9f9; Optional background */
  text-align: center;
}

.logo-slider img {
  max-width: 150px; /* Reduced logo size */
  margin: 0 auto;
}


.slick-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
/* Adjust the container for only the kanban image */
.centered-image {
  padding: 50px 0; /* Adds equal space above and below */
  text-align: center; /* Centers the image horizontally */
}

/* Ensure that only this image gets resized */
.centered-image img {
  max-width: 100px; /* Adjust the size for this specific image */
  margin: 0 auto;
}

.hero .carousel-indicators-container {
  display: flex;
  justify-content: space-between; /* Ensure equal spacing */
  position: absolute; /* Positioning it over the carousel */
  top: 50%; /* Center vertically */
  left: 0;
  right: 0;
  transform: translateY(-50%); /* Adjust for vertical centering */
  z-index: 10; /* Ensure it's on top */
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  background: transparent;
  color: white; /* Change color as needed */
  font-size: 32px; /* Adjust the size */
  padding: 0 20px; /* Space around the icons */
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 1; /* Make them more visible on hover */
}
.hero .carousel-control-prev {
  padding-left: 30px; /* Add 30px padding to the left */
}

.hero .carousel-control-next {
  padding-right: 30px; /* Add 30px padding to the right */
}
.hero .carousel-container {
  position: absolute;
  inset: 0; /* Ensures the container fills the whole area */
  display: flex;
  justify-content: center; /* Horizontally centers content */
  align-items: center; /* Vertically centers content */
  flex-direction: column; /* Keeps content stacked vertically */
  text-align: center; /* Centers text */
  z-index: 3; /* Ensures the content stays on top */
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

/* Override .section padding for hero section */
.hero.section {
  padding: 0 !important;
}

/* Desktop: Adjust margin-top to align with fixed header */
.hero.section,
#hero.section,
section#hero.hero.section {
  margin-top: -75px;
}

/* Remove spacing between header and hero on mobile and keep text clear of header */
@media (max-width: 768px) {
  .hero.section,
  #hero.section,
  section#hero.hero.section {
    padding: 0 !important;
    margin-top: -40px !important; /* Slightly tuck hero under header background, without overlapping text */
  }

  /* Keep hero content safely below the fixed header */
  .hero .carousel-container {
    inset: 150px 20px 56px 20px;
  }

  /* Slightly smaller mobile hero heading to avoid clipping */
  .hero h2 {
    font-size: 24px;
    line-height: 1.18;
  }
}

.hero .carousel {
  width: 100%;
  min-height: 75vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}


.hero .btn-get-started {
  color: #fff;
  background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
  background-size: 200% 200%;
  animation: rgbShift 3s ease infinite, fadeInUp 1s both 0.4s;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: all 0.5s ease;
  margin: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 64, 255, 0.3), 
              0 -4px 15px rgba(255, 0, 64, 0.3),
              4px 0 15px rgba(0, 255, 64, 0.3);
  border: 2px solid transparent;
}

.hero .btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.hero .btn-get-started:hover::before {
  left: 100%;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 64, 255, 0.5), 
              0 -6px 25px rgba(255, 0, 64, 0.5),
              6px 0 25px rgba(0, 255, 64, 0.5);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Chromatic Aberration RGB Animation */
@keyframes rgbShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes rgbPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--rgb-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: var(--rgb-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  text-decoration: none;
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #fff;
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid;
  border-image: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green)) 1;
  background: transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 64, 255, 0.2);
}

.header .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
  transition: left 0.3s ease;
  z-index: -1;
}

.header .btn-getstarted:hover::before,
.header .btn-getstarted:focus:hover::before {
  left: 0;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 64, 255, 0.4), 
              0 -4px 15px rgba(255, 0, 64, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    /* Center the Get Started button in the header on mobile */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.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: 16px;
    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;
  }

  /* Stylish dropdown chevron for desktop */
  .navmenu .toggle-dropdown {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--accent-color), white 20%);
    background: rgba(0, 0, 0, 0.55);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
  }

  .navmenu .dropdown.active > a .toggle-dropdown {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    color: #fff;
    border-color: color-mix(in srgb, var(--accent-color), white 5%);
  }

  .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: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    display: block;
    width: 100%;
  }

  .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 {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    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;
    /* Keep the toggle icon fixed on the right side on mobile */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 0.3s;
    pointer-events: auto; /* Ensure toggle is always clickable even when navmenu has pointer-events: none */
    z-index: 9999; /* Ensure toggle is above other elements */
  }

  /* Full-height right-side sliding sidebar container */
  .navmenu {
    padding: 0;
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none; /* disabled until opened */
  }

  /* Dark overlay behind the sidebar */
  .navmenu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.3s ease;
    pointer-events: none;
  }

  /* Sidebar panel */
  .navmenu ul {
    display: block;
    list-style: none;
    position: absolute;
    top: 0;
    right: -100%; /* hidden completely off-screen by default */
    width: 85%;   /* sidebar takes most of the screen width */
    max-width: 320px;
    min-height: 100vh; /* ensure panel is at least full screen height */
    padding: 50px 0 20px; /* reduced padding so all items fit without scroll */
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;  /* scroll to see all menu items */
    transition: right 0.3s ease;
    z-index: 9998;
    box-shadow: -2px 0 30px rgba(0, 0, 0, 0.3);
  }

  .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;
    transition: 0.3s;
  }

  /* Refined mobile dropdown icon */
  .navmenu .toggle-dropdown {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--accent-color), white 20%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
  }

  .navmenu .dropdown.active > a .toggle-dropdown {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    color: #ffffff;
    border-color: color-mix(in srgb, var(--accent-color), white 5%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: transparent;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    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);
    margin: 10px 20px;
  }

  .navmenu .dropdown ul.dropdown-active,
  .navmenu .dropdown > ul.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .navmenu .dropdown ul ul.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.1);
  }

  .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;
  }

  /* Enable overlay + slide-in when mobile nav is active */
  .mobile-nav-active .navmenu {
    pointer-events: auto;
  }

  .mobile-nav-active .navmenu::before {
    background: rgba(33, 37, 41, 0.8);
    pointer-events: auto;
  }

  .mobile-nav-active .navmenu>ul {
    right: 0;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 10%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--rgb-red), var(--rgb-blue), var(--rgb-green));
  background-size: 200% 200%;
  animation: rgbShift 3s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 64, 255, 0.3),
              0 -4px 15px rgba(255, 0, 64, 0.3);
  transform: translateY(-3px);
}

.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 {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--rgb-cyan);
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.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(--rgb-cyan);
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  transform: translateX(3px);
  transition: all 0.3s ease;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--footer-background-color) 90%, white 15%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #1a1a2e, #000000 60%);
  color: #ffffff;
  overflow: hidden;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#preloader .preloader-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

#preloader .preloader-logo img {
  width: 110px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(255, 204, 0, 0.75));
}

#preloader .preloader-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-color);
  border-right-color: var(--accent-color);
  animation: preloader-spin 1.3s linear infinite;
}

#preloader .preloader-text {
  margin-top: 24px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes preloader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloader-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# 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;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Foundation Section
--------------------------------------------------------------*/
.foundation {
  padding: 80px 0;
  background-color: var(--background-color);
}

.foundation-header {
  margin-bottom: 50px;
}

.foundation-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a5490;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

.foundation-description {
  font-size: 16px;
  color: #444444;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
  text-align: justify;
}

.foundation-description strong {
  color: #1a5490;
  font-weight: 600;
}

.foundation-description em {
  font-style: italic;
  color: #20B2AA;
}

.foundation-card {
  background: #20B2AA;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(32, 178, 170, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.foundation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.foundation-card:hover::before {
  opacity: 1;
}

.foundation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(32, 178, 170, 0.3);
}

.foundation-icon-wrapper {
  margin-bottom: 25px;
}

.foundation-icon {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.foundation-icon i {
  font-size: 32px;
}

.foundation-card-purpose .foundation-icon i {
  color: #FF6347;
}

.foundation-card-vision .foundation-icon i {
  color: #DC143C;
}

.foundation-card-mission .foundation-icon i {
  color: #2F4F4F;
}

.foundation-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.foundation-card-description {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 992px) {
  .foundation-title {
    font-size: 30px;
  }
  
  .foundation-description {
    font-size: 15px;
  }
  
  .foundation-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .foundation {
    padding: 60px 0;
  }
  
  .foundation-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .foundation-description {
    font-size: 14px;
    text-align: left;
  }
  
  .foundation-card {
    padding: 30px 20px;
  }
  
  .foundation-card-title {
    font-size: 20px;
  }
  
  .foundation-card-description {
    font-size: 14px;
  }
}

.about .content .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features .features-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.features .features-item i {
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.features .features-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 80px 20px;
  height: 100%;
  transition: all ease-in-out 0.3s;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 10px;
}

.stats .stats-item i {
  font-size: 44px;
  color: var(--accent-color);
  line-height: 0;
  margin-right: 15px;
}

.stats .stats-item .purecounter {
  color: var(--heading-color);
  font-size: 40px;
  display: block;
  font-weight: 700;
  line-height: 40px;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 15px 0 0 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 25px 15px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .team-member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/* Smooth transition for website features sections */
.website-features-container {
  position: relative;
  overflow: hidden;
}

.website-features-section,
.dynamic-website-section {
  will-change: opacity, visibility;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.website-features-section *,
.dynamic-website-section * {
  pointer-events: inherit;
}

/* Theme-colored checkmarks for features list */
.website-features-section .bi-check-circle-fill,
.dynamic-website-section .bi-check-circle-fill {
  color: var(--accent-color) !important;
}

/* Infinity Symbol around Each Guarantee Badge */
/* Badge effects removed - keeping only images */
.guarantee-badges-container {
  position: relative;
  overflow: visible;
}

.guarantee-badge-wrapper,
.guarantee-badge-wrapper::before,
.guarantee-badge-wrapper::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.infinity-symbol-per-badge {
  display: none !important;
}

.guarantee-badge-image {
  position: relative;
  z-index: 1;
  animation: none !important;
  transition: none !important;
}

.guarantee-badges-container .row {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments for infinity symbol */
@media (max-width: 768px) {
  .infinity-symbol-per-badge {
    width: 110%;
    max-width: 250px;
    opacity: 0.8;
  }
  
  .guarantee-badges-container {
    padding: 50px 15px !important;
  }
}

@media (max-width: 576px) {
  .infinity-symbol-per-badge {
    width: 100%;
    max-width: 200px;
    opacity: 0.7;
  }
  
  .guarantee-badges-container {
    padding: 40px 10px !important;
  }
}

/* Themed warning button colors for DVC & other CTAs */
.btn-warning {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background-color: #e0ad3f; /* slightly darker shade of accent color */
  border-color: #e0ad3f;
  color: var(--contrast-color);
}

/* Remove link underline & extra effects for DVC buttons on hover */
#our-product .btn-warning,
#our-product .btn-warning:hover,
#our-product .btn-warning:focus,
#our-product .btn-warning:active {
  text-decoration: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Our Product image slider - larger, consistent image height */
#our-product .our-product-image {
  max-height: 340px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  #our-product .our-product-image {
    max-height: 400px;
  }
}

/* Our Product carousel controls (left/right arrows) */
#ourProductCarousel .carousel-control-prev,
#ourProductCarousel .carousel-control-next {
  width: 8%;
  opacity: 0.9;
}

#ourProductCarousel .carousel-control-prev-icon,
#ourProductCarousel .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background-size: 70% 70%;
}

#ourProductCarousel .carousel-control-prev:hover,
#ourProductCarousel .carousel-control-next:hover {
  opacity: 1;
}
