:root {
    --primary-green: #2e8b57;
    --dark-green: #1e6b3f;
    --light-green: #e8f5e9;
    --white: #ffffff;
    --black: #000000;
    --contact-bg: #f8f9fa;
    --gray: #6c757d;
}

body {
    font-family: 'verdana', sans-serif;
    overflow-x: hidden;
    padding-top: 0;
    font-weight: bolder;
}


.content-page {
    margin-top: 100px;
}
.content-page .nav-link {
    color: var(--dark-green) !important;
}
.content-page .nav-link.active {
    color: var(--primary-green) !important;
    font-weight: 600;
}

.content-page .nav-link:after {
    background: var(--primary-green) !important;
}
.content-page .nav-contact {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
}


.content-page .nav-contact:hover {
    background-color: var(--dark-green) !important;
    color: var(--white) !important;
}

.content-page .nav-link:hover:after {
    background: var(--primary-green) !important;
}


.home-page .carousel-container {
    height: 100vh;
}

.home-page .navbar {
    background: transparent !important;
    position: absolute;
}

.home-page .navbar.scrolled {
    background: var(--white) !important;
    position: fixed;
}

.categorie-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    text-decoration: none;
    padding: 8px 15px; /* Ajout d'espace interne */
    display: inline-block;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    background-color: transparent;
    padding: 25px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    top: 0;
}

.navbar .nav-link {
    font-size: 0.85rem;
    padding: 6px 10px !important;
}

.navbar.scrolled {
    background-color: var(--white) !important;
    padding: 15px 0;
    position: fixed;
}

.navbar.scrolled .nav-link {
    color: var(--dark-green) !important;

}

.navbar.scrolled .nav-link:after {
    background: var(--primary-green);

}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    padding: 8px 15px !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--white);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}


/* Style spécial pour le bouton Contact */
.nav-contact {
    background-color: var(--contact-bg);
    color: var(--primary-green) !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-contact:after {
    display: none !important;
}

.navbar.scrolled .nav-contact {
    background-color: var(--primary-green);
    color: var(--white) !important;
}

.nav-contact:hover {
    background-color: var(--dark-green) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.nav-contact i {
    margin-right: 8px;
}

/* Carousel */
.carousel-container {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.carousel-item {
    height: 85vh;
    min-height: 600px;
}

.carousel-item img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    filter: brightness(0.8);
}

.carousel-caption {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    background-color: rgba(46, 139, 87, 0.8);
    padding: 25px;
    border-radius: 10px;
    max-width: 80%;
    margin: 0 auto;
}

.carousel-caption h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Carousel indicators - Style rond */
.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background-color: transparent;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Section Mot du directeur */
.director-section {
    padding: 80px 0;
    background-color: var(--light-green);
    position: relative;
}

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

.director-header {
    text-align: center;
    margin-bottom: 50px;
}

.director-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.director-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.director-image {
    flex: 0 0 40%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.director-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.director-image:hover img {
    transform: scale(1.03);
}

.director-text {
    flex: 1;
    text-align: left;
}

.director-quote {
    color: var(--black);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--primary-green);
}

.director-name {
    color: var(--dark-green);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.director-position {
    color: var(--primary-green);
    font-style: italic;
    margin-bottom: 30px;
}

.director-read-more {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.director-read-more:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-green);
    bottom: 0;
    left: 0;
    transition: all 0.3s;
}

.director-read-more:hover {
    color: var(--dark-green);
}

.director-read-more:hover:after {
    background: var(--dark-green);
}

.director-read-more i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.director-read-more:hover i {
    transform: translateX(5px);
}

/* Section Hôpitaux partenaires */
.partners-section {
    background-color: rgba(233, 240, 242, 0.493);
    padding: 80px 0;
}

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

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.partners-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partner-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
}

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

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-name {
    color: var(--dark-green);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.partner-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.partner-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.partner-link:hover {
    color: var(--dark-green);
}

.partner-link:hover i {
    transform: translateX(3px);
}

.partners-btn-container {
    text-align: center;
    margin-top: 30px;
}

.partners-btn {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary-green);
}

.partners-btn:hover {
    background-color: transparent;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .carousel-caption h3 {
        font-size: 2.2rem;
    }

    .carousel-caption p {
        font-size: 1.1rem;
    }

    .navbar-brand img {
        height: 55px;
    }

    .director-title,
    .partners-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .carousel-container,
    .carousel-item {
        height: 75vh;
        min-height: 500px;
    }

    .carousel-caption {
        max-width: 90%;
        padding: 20px;
    }

    .carousel-caption h3 {
        font-size: 2rem;
    }

    .navbar-brand img {
        height: 50px;
    }

    .director-content {
        flex-direction: column;
        gap: 30px;
    }

    .director-image {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .carousel-container,
    .carousel-item {
        height: 65vh;
        min-height: 400px;
    }

    .carousel-caption h3 {
        font-size: 1.6rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 45px;
    }

    .nav-contact {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .director-section,
    .partners-section {
        padding: 60px 0;
    }

    .director-title,
    .partners-title {
        font-size: 2rem;
    }

    .director-quote {
        font-size: 1rem;
        padding-left: 20px;
    }

    .partners-subtitle {
        font-size: 1rem;
    }
}

/* @media (max-width: 576px) {
    .carousel-container,
    .carousel-item {
        height: 55vh;
        min-height: 350px;
    }

    .carousel-caption {
        padding: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .director-section,
    .partners-section {
        padding: 50px 0;
    }

    .director-title,
    .partners-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .director-header,
    .partners-header {
        margin-bottom: 30px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} */

/* Section EMSP en chiffres*/
.numbers-section {
    padding: 80px 0;
    background-color: var(--light-green);
}

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

.numbers-header {
    text-align: center;
    margin-bottom: 60px;
}

.numbers-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.numbers-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--primary-green);
    bottom: -10px;
    left: 25%;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.number-item {
    padding: 30px 20px;
}

.number-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
    line-height: 1;
}

.number-label {
    font-size: 1.2rem;
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-top: 15px;
}

.number-label:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--primary-green);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .number-value {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .numbers-section {
        padding: 50px 0;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .numbers-title {
        font-size: 1.8rem;
    }

    .number-value {
        font-size: 2.5rem;
    }

    .number-label {
        font-size: 1rem;
    }
}

 /* Section Actualités récentes */
.news-section {
padding: 80px 0;
background-color: rgba(233, 240, 242, 0.493);
position: relative;
}

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

.news-header {
text-align: center;
margin-bottom: 50px;
}

.news-title {
color: var(--primary-green);
font-size: 2.5rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 15px;
position: relative;
}

.news-title:after {
content: '';
position: absolute;
width: 80px;
height: 3px;
background: var(--primary-green);
bottom: -10px;
left: 50%;
transform: translateX(-50%);
}

.news-subtitle {
color: var(--gray);
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto;
}

.news-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 50px;
}

.news-card {
background: var(--white);
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
}

.news-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
position: relative;
height: 220px;
overflow: hidden;
}

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

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

.news-date {
position: absolute;
top: 20px;
right: 20px;
background-color: var(--primary-green);
color: var(--white);
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
line-height: 1;
z-index: 1;
padding: 10px;
text-align: center;
}

.news-day {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 5px;
}

.news-month {
font-size: 0.9rem;
text-transform: uppercase;
line-height: 1.2;
}

.news-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}

.news-card-title {
color: var(--dark-green);
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 15px;
line-height: 1.4;
}

.news-excerpt {
color: var(--gray);
margin-bottom: 20px;
flex: 1;
}

.news-read-more {
display: inline-flex;
align-items: center;
color: var(--primary-green);
font-weight: 600;
text-decoration: none;
transition: all 0.3s;
}

.news-read-more i {
margin-left: 8px;
transition: transform 0.3s;
}

.news-read-more:hover {
color: var(--dark-green);
}

.news-read-more:hover i {
transform: translateX(5px);
}

.news-btn-container {
text-align: center;
margin-top: 30px;
}

.news-btn {
display: inline-block;
background-color: var(--primary-green);
color: var(--white);
padding: 12px 30px;
border-radius: 30px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
text-decoration: none;
transition: all 0.3s;
border: 2px solid var(--primary-green);
}

.news-btn:hover {
background-color: transparent;
color: var(--primary-green);
transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
.news-title {
    font-size: 2.2rem;
}
}

@media (max-width: 992px) {
.news-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}

@media (max-width: 768px) {
.news-section {
    padding: 60px 0;
}

.news-title {
    font-size: 2rem;
}

.news-subtitle {
    font-size: 1rem;
}

.news-card-title {
    font-size: 1.2rem;
}
}

@media (max-width: 576px) {
.news-section {
    padding: 50px 0;
}

.news-grid {
    grid-template-columns: 1fr;
}

.news-title {
    font-size: 1.8rem;
}
}

/* Section Vidéos récentes */
.video-carousel-section {
    padding: 80px 0;
    background-color: var(--light-green);
  }
  .video-carousel-section .section-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

  .video-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .video-cards {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 20px;
    width: 100%;
    padding: 10px 0;
  }

  .carousel-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-green);
    cursor: pointer;
    z-index: 2;
    padding: 0 10px;
  }
  .carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
  }


  .video-card {
    flex: 0 0 250px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .video-thumb {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
  }
  .video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--primary-green);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
  }
  .video-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .video-info h3 {
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 10px;
  }
  .video-btn {
    align-self: start;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
  }
  .video-btn:hover {
    background: var(--primary-green);
    color: var(--white);
  }

.modal-body video {
    max-height: 80vh;
    object-fit: contain;
}





/* Responsive : réduire la taille des cartes */
@media (max-width: 768px) {
    .video-card { flex: 0 0 200px; }
    .video-thumb { height: 120px; }
}

    /* --- Style modale vidéo --- */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
      }

      .modal-content {
        position: relative;
        margin: auto;
        padding: 0;
        width: 80%;
        max-width: 800px;
      }

      #modalVideo {
        width: 100%;
        height: auto;
        display: block;
      }

    .close-btn {
        color: white;
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 35px;
        cursor: pointer;
    }


//* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.8);
    color: #032445;
    padding: 10px;
    text-align: center;
    opacity: 1;
    height: auto;
    display: block;
    transition: none;
}

.image-title {
    font-size: 1.1rem;
    font-weight: bolder;
    /* text-shadow: 1px 1px 2px #000; */
}

.gallery-section {
    background-color: rgba(213, 252, 238, 0.247);
    padding: 60px 20px;
    color: #333;
}

.gallery-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-link {
    display: inline-block;
    margin: 0 15px;
    padding: 8px 16px;
    text-decoration: none;
    color: #032445;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s;
}

.filter-link:hover,
.filter-link.active {
    background-color: #032445;
    color: #fff;
    border-color: #032445;
}

.gallery-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
}

.gallery-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 150px;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%; */
    /* background-color: rgba(0,0,0,0.9); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    width: 90%;
    max-width: 50%;
    height: auto;
    margin: auto;
    display: block;
    object-fit: contain;
    position: relative;
    transition: transform 0.3s ease;
}

@media (min-width: 1600px) {
    .lightbox-content {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        max-width: 95%;
    }
}


/* Footer */


.footer {
    position: relative;
    overflow: visible;
    padding-top: 120px;
    background-color: #032445;
    color: #ecf0f1;
    padding: 100px 0 30px;
    margin-top: auto;
}


.footer::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 120px;
}


.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-logo img {
height: 70px;
}

.footer-about p {
margin-bottom: 20px;
line-height: 1.6;
color: #bdc3c7;
}

.footer-social a {
display: inline-block;
color: #2c3e50;
background-color: #ecf0f1;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
line-height: 40px;
margin-right: 10px;
transition: all 0.3s;
}

.footer-social a:hover {
background-color: var(--primary-green);
color: white;
transform: translateY(-3px);
}

.footer-title {
color: white;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 25px;
position: relative;
padding-bottom: 10px;
}

.footer-title:after {
content: '';
position: absolute;
width: 50px;
height: 2px;
background: #ecf0f1;
bottom: 0;
left: 0;
}

.footer-links {
list-style: none;
padding: 0;
}

.footer-links li {
margin-bottom: 12px;
}

.footer-links a {
color: #bdc3c7;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
}

.footer-links a:hover {
color: white;
transform: translateX(5px);
}

.footer-links a i {
margin-right: 8px;
color: #bdc3c7;
}

.footer-contact-item {
display: flex;
margin-bottom: 20px;
}

.footer-contact-icon {
color: #bdc3c7;
font-size: 1.2rem;
margin-right: 15px;
margin-top: 3px;
}

.footer-contact-text {
flex: 1;
}

.footer-contact-text h4 {
font-size: 1rem;
margin-bottom: 5px;
color: white;
}

.footer-contact-text p,
.footer-contact-text a {
color: #bdc3c7;
margin: 0;
text-decoration: none;
transition: all 0.3s;
}

.footer-contact-text a:hover {
color: white;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
margin: 0;
color: #bdc3c7;
font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.footer {
padding: 40px 0 20px;
}

.footer-grid {
grid-template-columns: 1fr;
gap: 30px;
}

.footer-title {
margin-bottom: 20px;
}
}

@media (max-width: 576px) {
.footer {
padding: 30px 0 15px;
}

.footer-logo img {
height: 60px;
}
}

.footer-wave {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-top: -1px;
  }
  .footer-wave svg {
    display: block;
    width: 100%;
    height: 100%;
  }
