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

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #45505b;  /* The default color of the main navmenu links */
  --nav-hover-color: #0563bb; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0563bb; /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

        
.img-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.img-container:hover {
    transform: translateY(-10px);
}

.img-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(45deg, #e9ecef, #dee2e6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    padding-right: 40px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    color: #007bff;
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.info-item strong {
    color: #495057;
    min-width: 80px;
    display: inline-block;
}

.info-item span,
.info-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #007bff;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.intro {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

#msg {
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.1);
}

@media (max-width: 768px) {
    .content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .img-container {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .header {
    background-color: var(--background-color);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header~main {
    margin-left: 160px;
  }

  .header~main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 20px;
}

.navmenu a span,
.navmenu a:focus span {
  padding: 0 5px 0 7px;
}

@media (min-width: 992px) {

  .navmenu a,
  .navmenu a:focus {
    max-width: 56px;
  }

  .navmenu a span,
  .navmenu a:focus span {
    display: none;
  }
}

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

.navmenu a:hover,
.navmenu li:hover>a {
  max-width: 100%;
  color: var(--contrast-color);
}

.navmenu a:hover span,
.navmenu li:hover>a span {
  display: block;
}

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

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader Modernisé
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: color-mix(in srgb, var(--background-color, #ffffff) 92%, transparent);
  backdrop-filter: blur(12px) saturate(1.2);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, visibility, transform;
}

/* Spinner principal avec effet glassmorphisme */
#preloader::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--accent-color, #0066ff);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 8px 32px rgba(0, 102, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: modernSpin 1.2s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  will-change: transform;
}

/* Cercle extérieur avec effet néon */
#preloader::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    transparent, 
    color-mix(in srgb, var(--accent-color, #0066ff) 30%, transparent),
    transparent
  );
  background-size: 200% 200%;
  animation: neonPulse 3s ease-in-out infinite,
             backgroundShift 4s ease-in-out infinite;
  filter: blur(0.5px);
  will-change: transform, background-position;
}

/* Animation de rotation fluide */
@keyframes modernSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Animation de pulsation néon */
@keyframes neonPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
    filter: blur(0.5px);
  }
  33% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.7;
    filter: blur(0px);
  }
  66% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
    filter: blur(1px);
  }
}

/* Animation de dégradé mobile */
@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* États du preloader */
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}

#preloader.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Version alternative avec dégradé conique moderne */
.preloader-gradient::before {
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    var(--accent-color, #0066ff) 60deg,
    color-mix(in srgb, var(--accent-color, #0066ff) 80%, #ff6b6b) 120deg,
    transparent 180deg,
    color-mix(in srgb, var(--accent-color, #0066ff) 60%, #4ecdc4) 240deg,
    var(--accent-color, #0066ff) 300deg,
    transparent 360deg
  );
  border: none;
  border-radius: 50%;
  mask: radial-gradient(circle, transparent 42%, black 45%, black 55%, transparent 58%);
  -webkit-mask: radial-gradient(circle, transparent 42%, black 45%, black 55%, transparent 58%);
  box-shadow: 
    0 0 20px color-mix(in srgb, var(--accent-color, #0066ff) 30%, transparent),
    0 0 40px color-mix(in srgb, var(--accent-color, #0066ff) 15%, transparent);
}

/* Effet de particules optionnel */
.preloader-particles::before {
  box-shadow: 
    0 0 0 10px color-mix(in srgb, var(--accent-color, #0066ff) 10%, transparent),
    0 0 0 20px color-mix(in srgb, var(--accent-color, #0066ff) 5%, transparent),
    0 0 20px color-mix(in srgb, var(--accent-color, #0066ff) 20%, transparent);
}

/* Adaptation responsive moderne */
@media (max-width: 768px) {
  #preloader::before {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }
  
  #preloader::after {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 480px) {
  #preloader::before {
    width: 48px;
    height: 48px;
    border-width: 2px;
  }
  
  #preloader::after {
    width: 64px;
    height: 64px;
  }
}

/* Mode sombre avec contraste amélioré */
@media (prefers-color-scheme: dark) {
  #preloader {
    background: color-mix(in srgb, var(--background-color, #0a0a0a) 93%, transparent);
    backdrop-filter: blur(12px) saturate(1.4) brightness(1.1);
  }
  
  #preloader::before {
    border-color: rgba(255, 255, 255, 0.08);
    border-top-color: var(--accent-color, #00aaff);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 
      0 8px 32px rgba(0, 170, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

/* Respect des préférences d'accessibilité */
@media (prefers-reduced-motion: reduce) {
  #preloader::before,
  #preloader::after {
    animation-duration: 4s;
    animation-timing-function: linear;
  }
  
  #preloader {
    transition-duration: 0.8s;
    backdrop-filter: blur(4px);
  }
  
  .preloader-gradient::before {
    animation: none;
    background: var(--accent-color, #0066ff);
  }
}

/* Optimisation des performances */
#preloader,
#preloader::before,
#preloader::after {
  contain: layout style paint;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Variables CSS personnalisables */
:root {
  --preloader-size: 64px;
  --preloader-border: 4px;
  --preloader-color: #0066ff;
  --preloader-bg: rgba(255, 255, 255, 0.95);
  --preloader-blur: 12px;
  --preloader-animation-duration: 1.2s;
}

/* Version avec variables personnalisées */
.preloader-custom {
  background: var(--preloader-bg);
  backdrop-filter: blur(var(--preloader-blur));
}

.preloader-custom::before {
  width: var(--preloader-size);
  height: var(--preloader-size);
  border-width: var(--preloader-border);
  border-top-color: var(--preloader-color);
  animation-duration: var(--preloader-animation-duration);
}

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

/*--------------------------------------------------------------
# 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 {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}


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

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

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 20px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

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

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  margin-top: 10px;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

.progress-bar {
  transition: width 1s ease-in-out;
}

.progress {
  margin-bottom: 15px;
  height: 30px; /* Increase the height of the progress bar */
}

.progress .skill {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px; /* Align text vertically within the progress bar */
  margin-right: 10px; /* Add some space between the skill name and the progress bar */
  display: inline-block;
}

.progress-bar {
  line-height: 30px; /* Align text vertically within the progress bar */
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

        .services {
            padding: 80px 0;
        }


        .service-item {
            background: var(--surface-color);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            height: 100%;
            padding: 50px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }

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

        .service-item:hover::before {
            left: 100%;
        }

        .service-item .icon {
            margin: 0 auto 30px;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .service-item .icon i {
            font-size: 40px;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .service-item .icon svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100px;
            height: 100px;
        }



        /* Color variants */
        .service-item.item-cyan i {
            color: #0dcaf0;
        }
        .service-item.item-cyan:hover .icon i {
            color: #fff;
        }
        .service-item.item-cyan:hover .icon path {
            fill: #0dcaf0;
        }

        .service-item.item-orange i {
            color: #fd7e14;
        }
        .service-item.item-orange:hover .icon i {
            color: #fff;
        }
        .service-item.item-orange:hover .icon path {
            fill: #fd7e14;
        }

        .service-item.item-teal i {
            color: #20c997;
        }
        .service-item.item-teal:hover .icon i {
            color: #fff;
        }
        .service-item.item-teal:hover .icon path {
            fill: #20c997;
        }

        .service-item.item-purple i {
            color: #6f42c1;
        }
        .service-item.item-purple:hover .icon i {
            color: #fff;
        }
        .service-item.item-purple:hover .icon path {
            fill: #6f42c1;
        }

        .service-item.item-red i {
            color: #df1529;
        }
        .service-item.item-red:hover .icon i {
            color: #fff;
        }
        .service-item.item-red:hover .icon path {
            fill: #df1529;
        }

        .service-item.item-indigo i {
            color: #6610f2;
        }
        .service-item.item-indigo:hover .icon i {
            color: #fff;
        }
        .service-item.item-indigo:hover .icon path {
            fill: #6610f2;
        }

        .service-item.item-pink i {
            color: #f3268c;
        }
        .service-item.item-pink:hover .icon i {
            color: #fff;
        }
        .service-item.item-pink:hover .icon path {
            fill: #f3268c;
        }



