/* Global styles for smooth transitions */

* {
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    scroll-behavior: smooth;
}


/* Container */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}


/* Header */

header {
    background-color: #1a1a1d;
    padding: 20px 0;
    position: fixed;
    width: 98.7%;
    height: 100px;
    z-index: 1000;
    top: 0;
    left: 0;
    text-align: center;
    padding: 50px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 3em;
    letter-spacing: 2px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: 0.4s;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    color: #fff;
    border-radius: 5px;
}


/* Responsive Menu */

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    nav {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 10px 0;
    }
    nav.active {
        display: flex;
    }
}


/* Menu Button Styles */

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-button div {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}


/* Intro Section */

.intro {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./fondnoir2.0.jpg') no-repeat center center fixed;
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.intro h1 {
    font-size: 4em;
    margin-bottom: 20px;
    white-space: nowrap;
    /* Empêche le texte de se déplacer à la ligne */
}

.intro h1 span {
    display: inline-block;
    animation: slideWords 1s infinite;
}


/* Styles généraux */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}


/* Sections */

section {
    padding: 50px 0;
}

#about {
    background: #181818;
}

#services {
    background: linear-gradient(135deg, #0f2027, #202729, #020202);
}

#portfolio {
    background-color: #333;
}

#contact {
    background: #181818;
}

/* Contact */

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

form button {
    background-color: #ff5722;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #e64a19;
}


/* Sections */

section {
    padding: 100px 0;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

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


/* Buttons */

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4081;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: #ffc400;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.button:hover {
    background-color: #e03570;
    transform: scale(1.05);
}

button:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

button:hover:before {
    opacity: 1;
}


/* Footer Styles */

footer p {
    margin: 5px 0;
}

footer {
    background-color: #181818;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #ff5e00;
}


header {
    background-color: #181818;
    padding: 5px 0;
}

footer {
    background: #1a1a1d;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.styled-link-back {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    margin-bottom: 10px;
}

.styled-link-back:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Ultra-Futuristic and Surreal Effects */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}


/* Sections */

section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

section::before,
section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.2));
    mix-blend-mode: overlay;
    animation: gradientBackground 10s infinite alternate;
}

@keyframes gradientBackground {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.styled-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff4081;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.styled-link:hover {
    background-color: #e03570;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}


/* Contact */

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f2027, #202729, #020202);
    color: #fff;
    text-align: center;
}

.contact .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.contact form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.pcontact{
    color: #ff5722;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.form-group input[type="file"] {
    padding: 3px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #e64a19;
    transform: scale(1.1);
}


/* Add gradient effect for sections */

.transparent-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.transparent-section:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.transparent-section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Styles for donation modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #000000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #e64a19;
    transform: scale(1.1);
}


/* styles.css */

#announcement {
    position: fixed;
    top: 50%;
    right: -300px;
    /* Cache initialement le message */
    transform: translateY(-50%);
    background-color: #e64a19;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: right 0.5s ease-in-out;
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
}

.parallax-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    perspective: 1px;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateZ(0);
    will-change: transform;
}

.layer1 {
    background-image: url('pexels-frostroomhead-7911758.jpg');
    /* Replace with your image URL */
    z-index: 1;
    transform: translateZ(-1px) scale(2);
}

.layer2 {
    background-image: url('pexels-frostroomhead-7911758.jpg');
    /* Replace with your image URL */
    z-index: 2;
    transform: translateZ(-0.75px) scale(1.75);
}

.layer3 {
    background-image: url('pexels-frostroomhead-7911758.jpg');
    /* Replace with your image URL */
    z-index: 3;
    transform: translateZ(-0.5px) scale(1.5);
}

.intro-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

.intro-content h1 {
    font-size: 4em;
    margin: 0;
}

.intro-content p {
    font-size: 1.5em;
}

section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

section.in-view {
    opacity: 1;
    transform: translateY(0);
    perspective: 1000px;
}

.section-3d {
    transform: rotateY(15deg);
    transition: transform 1s ease;
}

.section-3d:hover {
    transform: rotateY(0);
}

marquee {
    background-color: #e64a19;
    color: #fff;
    padding: 10px;
    font-size: 18px;
    border-radius: 0px;
}

#podcasts {
    background: #181818;
    padding: 40px 20px;
    text-align: center;
}

#podcasts h2 {
    margin-top: 0;
}

.podcast-item {
    margin-bottom: 20px;
}

.podcast-item h3 {
    margin: 0 0 10px 0;
}


/* Styles pour la section Compétences */

#skills {
    padding: 40px 20px;
    background: #181818;
    text-align: center;
    margin-top: 40px;
}

#skills h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.skills-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.skill {
    margin-bottom: 20px;
}

.skill h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.skill-bar {
    background-color: #ddd;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.skill-level {
    display: block;
    height: 30px;
    line-height: 30px;
    color: #fff;
    background-color: #ff6347;
    text-align: right;
    padding-right: 10px;
    border-radius: 25px 0 0 25px;
    transition: width 1s ease-in-out;
}

.privacy-policy-link {
    text-align: center;
    margin-top: 5px;
}

.privacy-link {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ff5e00;
}

.legal-notice-link {
    text-align: center;
    margin-top: 5px;
}

.notice-link {
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.notice-link:hover {
    color: #ff5e00;
}

.veille{
    background: #181818;
}

.veille-container {
    background: #181818;
    max-width: 1300px;
    margin: 50px auto;
    padding: 20px;
    position: relative;
}

.veille-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

.veille-item {
    flex: 0 0 300px;
    margin: 0 10px;
    background-color: #ff5e00;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.veille-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.veille-content {
    background-color: #ff5e00;
    padding: 15px;
}

.veille-title {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.veille-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.carousel-button {
    border: none;
    color: #000000;
    font-size: 2rem;
    padding: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 10%;
}

.carousel-button-left {
    position: absolute;
    left: -40px;
}

.carousel-button-right {
    position: absolute;
    right: -40px;
}


/*impact environnemental*/

.environmental-commitment {
    padding: 50px 20px;
    background: #181818;
    text-align: center;
}

.commitment-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.commitment-text {
    flex: 1;
    max-width: 600px;
    font-size: 18px;
    margin-right: 30px;
    color: #ffffff;
}

.commitment-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.commitment-text ul li {
    padding: 10px 0;
    border-bottom: 1px solid #000000;
}

.commitment-text ul li:last-child {
    border-bottom: none;
}


/* Header */

.portfolio-header {
    background-color: #222;
    text-align: center;
    padding: 30px;
}


/* About Me */

.about-me {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    background-color: #181818;
}

.about-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
}

.about-image {
    width: 300px;
    border-radius: 15px;
}

.about-text {
    max-width: 800px;
    line-height: 1.6;
}


/* Projects */

.projects {
    padding: 10px 15px;
    background-color: #181818;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project {
    text-align: center;
}

.project img {
    width: 25%;
    border-radius: 20px;
}

.infimg{
    width: 125%;
    border-radius: 10px;
}

/* Section de veille technologique */
.tech-watch {
    background-image: url('./Veille-technologique.jpg'); /* Remplacez par l'URL de votre image de fond */
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}
  
.tech-watch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Superposition sombre pour améliorer la lisibilité du texte */
}
  
.tech-watch .content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
}
  
.tech-watch h1{
    font-size: 32px;
    margin-bottom: 20px;
    color: #ff5e00;
    text-align: center;
}

.tech-watch h2{
    font-size: 20px;
    margin-bottom: 20px;
    color: #3f4978;
    text-align: center;
}
  
.tech-watch p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}
  
/* Animation de fade-in */
@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
}
}
  
/* Timeline */

.timeline {
    background-color: #181818;
}

.timeline-container {
    margin: 30px auto;
    max-width: 800px;
}

.timeline-item {
    margin: 20px 0;
    border-left: 2px solid #f39c12;
    padding-left: 10px;
}

.timeline-date {
    font-weight: bold;
    color: #f39c12;
}

.color {
    color: #f39c12;
}

.materials {
    background-color: #181818;
}

.materials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.material-item {
    width: 250px;
    padding: 15px;
    border: 1px solid #f39c12;
    border-radius: 5px;
    background-color: #222;
}


/* CV Section */

.cv-section {
    background-color: #181818;
}

.cv-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cv-preview iframe {
    width: 300px;
    height: 400px;
    border: 1px solid #f39c12;
}


/* Compétences */

.competences {
    background-color: #181818;
}

.competences-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: auto;
}

.competences-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.competences-item {
    width: 250px;
    padding: 15px;
    border: 1px solid #f39c12;
    border-radius: 5px;
    background-color: #222;
}

.progress-bar {
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-bar div {
    background: #f39c12;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    font-weight: bold;
}


/* Réalisations */

.numbers {
    background-color: #181818;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.numbers-grid div {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    color: #f39c12;
}

p {
    color: #ffffff;
}

.certifications {
    background-color: #181818;
}

.certifications-list {
    border: 1px solid #f39c12;
    padding: 15px;
    border-radius: 10px;
    background: #222;
    margin: 10px;
    text-align: center;
}

.color-compétences{
    color: #ff5e00;
}

/* Section Services */
.detailed-services {
  text-align: center;
  padding: 50px 20px;
  background-color: #181818;
}

.detailed-services h1 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Container for service boxes */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual service box */
.service-box {
  background-color: #ff5e00;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.service-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.5;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media screen and (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablettes */
  }
}

@media screen and (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr; /* 1 colonne sur mobiles */
  }
}

.service-box1 {
    background-color: #a600ff;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.service-box1 h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
  
.service-box1 p {
    font-size: 16px;
    margin: 5px 0;
    line-height: 1.5;
}
  
.service-box1:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
  
/* Responsive design */
@media screen and (max-width: 1024px) {
    .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablettes */
   }
}
  
  @media screen and (max-width: 768px) {
    .services-container {
      grid-template-columns: 1fr; /* 1 colonne sur mobiles */
    }
  }

.service-box2 {
    background-color: #00cb14;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.service-box2 h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
  
.service-box2 p {
    font-size: 16px;
    margin: 5px 0;
    line-height: 1.5;
}
  
.service-box2:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
  
/* Responsive design */
  @media screen and (max-width: 1024px) {
    .services-container {
      grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur tablettes */
    }
  }
  
  @media screen and (max-width: 768px) {
    .services-container {
      grid-template-columns: 1fr; /* 1 colonne sur mobiles */
    }
  }

strong{
    color: #000000;
}

.colorstudio{
    color: #ff5e00;
}

.colorblancstudio{
    color: #ffffff;
}

.colorbleustudio{
    color: #007bff;
}

.colorvioletstudio{
    color: #a600ff;
}

.colorvertstudio{
    color: #00cb14;
}

.h2orange{
    color:#ff5e00 ;
}

.h2violet{
    color: #a600ff;
}

.h2vert{
    color: #00cb14;
}

.liorange{
    color: #ff5e00;
}

.services-section {
    background: #181818;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }

  .service-box {
    flex: 1 1 20%;
    min-width: 250px;
    background-color: #fff;
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .service-box:hover {
    transform: translateY(-10px);
  }

  .orange {
    background-color: #ff7a00;
  }

  .violet {
    background-color: #8e44ad;
  }

  .green {
    background-color: #27ae60;
  }

  .blue {
    background-color: #2980b9;
  }

  .service-box h3 {
    margin-top: 0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .service-box ul {
    list-style: none;
    padding-left: 0;
  }

  .service-box li {
    margin-bottom: 0.5rem;
  }