/**
* Template Name: iPortfolio - v3.9.1
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


 /* ===== COULEURS PERSONNALISÉES ===== */
    :root {
        --primary: #8576ff; /* Violet moderne */
        --primary-dark: #6b5bff;
        --primary-light: #a391ff;
        --accent: #a3ffd6; /* Vert menthe */
        --accent-dark: #17c8bd;
        --accent-light: #d4ffe8;
        --dark: #0f172a;
        --light: #f8fafc;
        --gray-100: #f1f5f9;
        --gray-200: #e2e8f0;
        --gray-300: #cbd5e1;
        --gray-400: #94a3b8;
        --gray-500: #64748b;
        --gray-600: #475569;
        --gray-700: #334155;
        --gray-800: #1e293b;
        --gray-900: #0f172a;
        
        --success: #10b981;
        --warning: #f59e0b;
        --danger: #ef4444;
        --info: #3b82f6;
        
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 16px;
        --radius-xl: 20px;
        
        --transition: all 0.3s ease;
    }

    /* ===== STYLES GÉNÉRAUX ===== */
    body {
        font-family: 'Poppins', sans-serif;
        color: var(--gray-700);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        line-height: 1.2;
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


a {
  color: #149ddd;
  text-decoration: none;
}

a:hover {
  color: #37b3ed;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #149ddd;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #2eafec;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  transition: all 0.5s;
  padding: 0 15px;
  background: #1c1678dd   ;
  overflow-y: auto;
  color: #fff;
}

#header .profile img {
  margin: 15px auto;
  display: block;
  width: 120px;
  /* border: 5px solid #2c2f3f; */
}

#header .profile h1 {
  font-size: 24px;
  margin: 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a,
#header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #a5b0e2;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#header .profile .social-links a:hover {
  background: #149ddd;
  color: #fff;
  text-decoration: none;
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }

  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding: 30px 0 0 0;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 12px 15px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 24px;
  padding-right: 8px;
  color: #d4ffe8;
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  text-decoration: none;
  color: #10b981;
  font-weight: bold;
}

.nav-menu a:hover i,
.nav-menu .active i,
.nav-menu .active:focus i,
.nav-menu li:hover>a i {
  color: #10b981;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  background-color: #149ddd;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 50px;
  cursor: pointer;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 0px 0;
  overflow: hidden;
}

.section-bg {
  background: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #149ddd;
  bottom: 0;
  left: 0;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #173b6c;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #149ddd;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #149ddd;
  float: left;
  line-height: 0;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

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

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
}

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

.skills .progress-bar-wrap {
  background: #dce8f8;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #149ddd;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #050d18;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #1f5297;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #e4edf9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #1f5297;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #149ddd;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a+a {
  border-left: 1px solid #37b3ed;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.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: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(5, 13, 24, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

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


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #c3e8fa;
  font-size: 26px;
}

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: #fff;
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid #fff;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #149ddd;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #149ddd;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: #f9f9f9;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}

.img-drd-top{
    border-radius: 5px;
}


    /* ===== HERO SECTION ===== */
    #heros {
        /* min-height: 100vh; */
        display: flex;
        align-items: center;
        position: relative;
        background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
        overflow: hidden;
        padding: 50px 0 60px;
    }

    #heros::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(133, 118, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(163, 255, 214, 0.1) 0%, transparent 50%);
    }

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

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: white;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--gray-300);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .typed {
        color: var(--accent);
        font-weight: 600;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--accent);
        display: block;
        line-height: 1;
    }

    .stat-label {
        color: var(--gray-400);
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .btn-custom {
        padding: 12px 28px;
        border-radius: var(--radius-lg);
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 2px solid transparent;
    }

    .btn-primary-custom {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        box-shadow: var(--shadow-lg);
    }

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
        color: white;
    }

    .btn-outline-custom {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.3);
        color: white;
    }

    .btn-outline-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        color: white;
    }

    /* ===== SECTIONS ===== */
    section {
        padding: 20px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 1rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--gray-900);
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 2px;
    }

    .section-title p {
        color: var(--gray-600);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    /* ===== ABOUT SECTION ===== */
    #about {
        background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
    }

    .about-card {
        background: white;
        border-radius: var(--radius-xl);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
        height: 100%;
        transition: var(--transition);
    }

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }

    .info-grid {
        display: grid;
        gap: 0.5rem;
    }

    .info-item {
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-200);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .info-item:last-child {
        border-bottom: none;
    }

    .info-label {
        color: var(--gray-600);
        font-weight: 500;
    }

    .info-value {
        color: var(--gray-900);
        font-weight: 600;
        text-align: right;
    }

    .info-value a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }

    .info-value a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

    /* ===== ICON BOXES ===== */
    .icon-box {
        background: white;
        border-radius: var(--radius-lg);
        padding: 1rem;
        border: 1px solid var(--gray-200);
        transition: var(--transition);
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .icon-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .icon-box:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-light);
    }

    .icon-box .icon-wrapper {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .icon-box .icon-wrapper i {
        font-size: 1.5rem;
        color: white;
    }

    .icon-box .title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--gray-900);
        margin-bottom: 1rem;
    }

    .icon-box .description {
        color: var(--gray-600);
        line-height: 1.7;
    }

    .icon-box .description ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .icon-box .description li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
        position: relative;
        list-style: none;
    }

    .icon-box .description li::before {
        content: '▸';
        color: var(--primary);
        position: absolute;
        left: 0;
    }

    /* ===== SKILLS SECTION ===== */
    #skills {
        background: linear-gradient(135deg, var(--light) 0%, var(--gray-100) 100%);
    }

    .skill-item {
        margin-bottom: 1.5rem;
    }

    .skill-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }

    .skill-name {
        font-weight: 600;
        color: var(--gray-800);
    }

    .skill-percent {
        color: var(--primary);
        font-weight: 600;
    }

    .skill-bar {
        height: 10px;
        background: var(--gray-200);
        border-radius: 5px;
        overflow: hidden;
        position: relative;
    }

    .skill-progress {
        height: 100%;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 5px;
        position: relative;
        width: 0;
        transition: width 1.5s ease-in-out;
    }

    .skill-progress::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    /* ===== RESUME SECTION ===== */
    #resume {
        background: white;
    }

    .resume-card {
        background: var(--light);
        border-radius: var(--radius-lg);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-left: 4px solid var(--primary);
        transition: var(--transition);
    }

    .resume-card:hover {
        transform: translateX(5px);
        box-shadow: var(--shadow-md);
    }

    .resume-card h4 {
        color: var(--gray-900);
        margin-bottom: 0.5rem;
    }

    .resume-card .period {
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    .resume-card .company {
        color: var(--gray-600);
        font-style: italic;
        margin-bottom: 1rem;
    }

    .resume-card ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .resume-card ul li {
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
        position: relative;
        color: var(--gray-700);
    }

    .resume-card ul li::before {
        content: '•';
        color: var(--primary);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* ===== PROJECTS SECTION ===== */
    #projects {
        background: linear-gradient(135deg, var(--gray-100) 0%, var(--light) 100%);
    }

    .project-filters {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.5rem 1.25rem;
        background: white;
        border: 1px solid var(--gray-300);
        border-radius: var(--radius-lg);
        color: var(--gray-700);
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        border-color: transparent;
    }

    .project-card {
        background: white;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        height: 100%;
    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .project-image {
        height: 200px;
        overflow: hidden;
        position: relative;
    }

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

    .project-card:hover .project-image img {
        transform: scale(1.05);
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        gap: 1rem;
    }

    .project-card:hover .project-overlay {
        opacity: 1;
    }

    .project-link {
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-900);
        text-decoration: none;
        transition: var(--transition);
    }

    .project-link:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-tag {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        background: var(--gray-100);
        color: var(--gray-700);
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
    }

    .project-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--gray-900);
        margin-bottom: 0.5rem;
        text-decoration: none;
        transition: var(--transition);
    }

    .project-title:hover {
        color: var(--primary);
    }

    /* ===== SERVICES SECTION ===== */
    #services {
        background: white;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    /* ===== FACTS SECTION ===== */
    #facts {
        background: linear-gradient(135deg, var(--gray-200) 0%, white 100%);
        /* color: white; */
    }

    .fact-box {
        text-align: center;
        padding: 2rem;
        background: rgb(255, 255, 255);
        border-radius: var(--radius-lg);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
    }

    .fact-box:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);        
        background: #a391ffa2;
    }

    .fact-box i {
        font-size: 2.5rem;
        color: var(--accent);
        margin-bottom: 1rem;
    }

    .fact-box .purecounter {
        font-size: 2.5rem;
        font-weight: 700;
        display: block;
        margin: 0.5rem 0;
        /* color: white; */
    }

    .fact-box p {
        /* color: rgba(255, 255, 255, 0.9); */
        margin: 0;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    #testimonials {
        background: linear-gradient(135deg, var(--gray-300) 0%, white 100%);
    }

    .testimonial-card {
        background: white;
        border-radius: var(--radius-lg);
        padding: 2rem;
        position: relative;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--gray-200);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 4rem;
        color: var(--primary-light);
        opacity: 0.2;
        font-family: serif;
    }

    .testimonial-text {
        color: var(--gray-700);
        font-style: italic;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
    }

    .testimonial-img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid var(--gray-200);
        margin-right: 1rem;
    }

    .testimonial-info h4 {
        color: var(--gray-900);
        font-size: 1rem;
        margin: 0 0 0.25rem 0;
    }

    .testimonial-info p {
        color: var(--gray-600);
        font-size: 0.9rem;
        margin: 0;
    }

 /* ===== SECTION CONTACT ===== */
    #contact {
        background: linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
        color: white;
        padding: 50px 0;
    }

    .contact-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    /* ===== INFORMATIONS DE CONTACT ===== */
    .contact-info-section {
        height: 100%;
    }

    .contact-info-title {
        color: var(--accent);
        font-size: 1.75rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 15px;
    }

    .contact-info-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 2px;
    }

    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }

    .contact-info-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(133, 118, 255, 0.3);
        transform: translateX(5px);
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-info-icon i {
        font-size: 1.25rem;
        color: white;
    }

    .contact-info-content h5 {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .contact-info-content p {
        color: rgba(255, 255, 255, 0.8);
        margin: 0;
        font-size: 0.9rem;
    }

    .contact-link {
        color: var(--accent);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .contact-link:hover {
        color: white;
        text-decoration: underline;
    }

    /* ===== DISPONIBILITÉ ===== */
    .availability-section {
        padding: 20px;
        background: rgba(163, 255, 214, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(163, 255, 214, 0.2);
    }

    .availability-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        background: rgba(163, 255, 214, 0.2);
        border-radius: 20px;
        color: var(--accent);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .availability-badge i {
        font-size: 1rem;
    }

    .availability-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* ===== CARTE GOOGLE MAPS ===== */
    .map-section {
        margin-top: 30px;
    }

    .map-title {
        color: white;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .map-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* ===== FORMULAIRE DE CONTACT ===== */
    .contact-form-section {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .form-header {
        margin-bottom: 20px;
    }

    .form-title {
        color: white;
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-subtitle {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.95rem;
    }

    /* ===== CHAMPS DE FORMULAIRE ===== */
    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        font-size: 0.9rem;
    }

    .form-control {
        width: 100%;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: white !important;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
        font-size: 0.95rem;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(133, 118, 255, 0.1);
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }

    /* ===== ERREURS ===== */
    .form-error {
        color: #ff6b6b;
        font-size: 0.8rem;
        margin-top: 5px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .form-error::before {
        content: '⚠';
    }

    /* ===== BOUTON D'ENVOI ===== */
    .btn-submit {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        border: none;
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(133, 118, 255, 0.3);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-submit i {
        font-size: 1.1rem;
    }

    /* ===== NOTE DU FORMULAIRE ===== */
    .form-note {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
    }

    .form-note i {
        color: var(--accent);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .contact-info-item,
    .contact-form-section {
        animation: fadeInUp 0.6s ease forwards;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .contact-card {
            padding: 20px;
        }
        
        .contact-info-item {
            padding: 10px;
        }
    }

    @media (max-width: 768px) {
        #contact {
            padding: 50px 0;
        }
        
        .contact-card {
            padding: 20px;
        }
        
        .contact-info-title,
        .form-title {
            font-size: 1.5rem;
        }
        
        .contact-info-icon {
            width: 40px;
            height: 40px;
        }
        
        .contact-info-icon i {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            text-align: center;
        }
        
        .contact-info-icon {
            margin: 0 auto;
        }
        
        .btn-submit {
            padding: 12px 20px;
        }
    }
    /* ===== FOOTER ===== */
    .main-footer {
        background: var(--dark);
        color: white;
        padding: 1rem 0 1rem;
        text-align: center;
    }

    .main-footer p {
        color: rgba(255, 255, 255, 0.7);
        margin: 0.5rem 0;
        font-size: 0.95rem;
    }

    .main-footer a {
        color: var(--accent);
        text-decoration: none;
        transition: var(--transition);
    }

    .main-footer a:hover {
        color: white;
        text-decoration: underline;
    }

    .footer-heart {
        color: #ff4757;
        animation: heartbeat 1.5s infinite;
    }

    @keyframes heartbeat {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    /* ===== UTILITIES ===== */
    .text-justify {
        text-align: justify;
    }

    .mb-0 {
        margin-bottom: 0 !important;
    }

    .mt-2 {
        margin-top: 0.5rem;
    }

    .mt-3 {
        margin-top: 1rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    .mb-3 {
        margin-bottom: 1rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .py-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-stats {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        section {
            padding: 60px 0;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .hero-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .hero-buttons {
            flex-direction: column;
        }
        
        .btn-custom {
            width: 100%;
            justify-content: center;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .section-title h2 {
            font-size: 1.75rem;
        }
        
        .about-card,
        .icon-box {
            padding: 1.5rem;
        }
    }


    /* ===== BREADCRUMBS ===== */
    .breadcrumbs-section {
        background: linear-gradient(135deg, var(--gray-900) 0%, var(--dark) 100%);
        padding: 20px 0 30px;
        color: white;
    }

    .breadcrumb {
        background: transparent;
        margin: 0;
        padding: 0;
    }

    .breadcrumb-item {
        color: rgba(255, 255, 255, 0.7);
    }

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

    .breadcrumb-item a:hover {
        color: white;
    }

    .breadcrumb-item.active {
        color: white;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.5);
        content: "›";
    }

    .page-header {
        margin-top: 20px;
    }

    .page-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }

    .page-subtitle {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
    }

    /* ===== PROJECT BANNER ===== */
    .project-banner {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 20px;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }

    .project-banner::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transform: translate(100px, -100px);
    }

    .project-banner-content {
        position: relative;
        z-index: 1;
    }

    .project-banner-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 15px;
        backdrop-filter: blur(10px);
    }

    .project-banner-title {
        color: white;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .project-banner-subtitle {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        margin: 0;
    }

    /* ===== PROJECT GALLERY ===== */
    .project-gallery {
        border-radius: 16px;
        overflow: hidden;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .gallery-slider {
        position: relative;
        height: 450px;
    }

    .gallery-slider .swiper-slide {
        height: 100%;
    }

    .gallery-item {
        position: relative;
        height: 100%;
        width: 100%;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-zoom {
        width: 60px;
        height: 60px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        font-size: 1.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .gallery-zoom:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    .gallery-thumbs {
        background: var(--gray-100);
        padding: 15px;
        border-radius: 0 0 16px 16px;
    }

    .gallery-thumbs-slider {
        height: 80px;
    }

    .gallery-thumbs-slider .swiper-slide {
        opacity: 0.4;
        transition: opacity 0.3s ease;
        cursor: pointer;
    }

    .gallery-thumbs-slider .swiper-slide-thumb-active {
        opacity: 1;
    }

    .gallery-thumbs-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: white;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.5);
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.5rem;
    }

    /* ===== PROJECT SIDEBAR ===== */
    .project-sidebar {
        position: sticky;
        top: 100px;
    }

    .project-info-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .project-info-header {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .project-info-header i {
        font-size: 1.5rem;
    }

    .project-info-header h3 {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .project-info-body {
        padding: 20px;
    }

    .info-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .info-item:last-child {
        border-bottom: none;
    }

    .info-label {
        color: var(--gray-700);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
    }

    .info-label i {
        color: var(--primary);
        font-size: 1.1rem;
    }

    .info-value {
        color: var(--gray-900);
        font-weight: 600;
        text-align: right;
        max-width: 50%;
    }

    .project-link {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .project-link:hover {
        color: var(--primary-dark);
    }

    .project-tech-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .project-tech-header {
        background: var(--gray-100);
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid var(--gray-200);
    }

    .project-tech-header i {
        color: var(--primary);
        font-size: 1.5rem;
    }

    .project-tech-header h4 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--gray-900);
    }

    .project-tech-body {
        padding: 20px;
        color: var(--gray-700);
        line-height: 1.6;
    }

    /* ===== DETAIL CARDS ===== */
    .project-detail-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: transform 0.3s ease;
    }

    .project-detail-card:hover {
        transform: translateY(-5px);
    }

    .detail-card-header {
        background: var(--gray-100);
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
        border-bottom: 1px solid var(--gray-200);
    }

    .detail-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .detail-icon i {
        color: white;
        font-size: 1.5rem;
    }

    .detail-card-header h4 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--gray-900);
    }

    .detail-card-body {
        padding: 20px;
        color: var(--gray-700);
        line-height: 1.6;
    }

    /* ===== RESULTS CARD ===== */
    .project-results-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .results-card-header {
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .results-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.766);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .results-icon i {
        color: #6b5bff;
        font-size: 1.8rem;
    }

    .results-card-header h4 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 600;
        color: #6b5bff;
    }

    .results-card-body {
        padding: 25px;
        color: var(--gray-700);
        line-height: 1.7;
        font-size: 1.05rem;
    }

    /* ===== PROJECT NAVIGATION ===== */
    .project-navigation {
        padding-top: 20px;
        border-top: 1px solid var(--gray-200);
    }

    .nav-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 25px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .nav-btn-prev {
        color: var(--gray-700);
        background: var(--gray-100);
        border-color: var(--gray-200);
    }

    .nav-btn-prev:hover {
        background: white;
        color: var(--primary);
        border-color: var(--primary);
        transform: translateX(-5px);
    }

    .nav-btn-next {
        color: white;
        background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .nav-btn-next:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 20px rgba(133, 118, 255, 0.3);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .page-title {
            font-size: 2rem;
        }
        
        .project-banner-title {
            font-size: 1.8rem;
        }
        
        .gallery-slider {
            height: 350px;
        }
        
        .project-sidebar {
            position: static;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .breadcrumbs-section {
            padding: 40px 0 20px;
        }
        
        .page-title {
            font-size: 1.8rem;
        }
        
        .project-banner {
            padding: 20px;
        }
        
        .gallery-slider {
            height: 300px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            display: none;
        }
        
        .detail-card-header {
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }
        
        .nav-btn {
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }
    }

    @media (max-width: 576px) {
        .project-banner-title {
            font-size: 1.5rem;
        }
        
        .gallery-slider {
            height: 250px;
        }
        
        .gallery-thumbs-slider {
            height: 60px;
        }
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
