:root {
  --gold: #c7a008;
  --black: #000000;
  --black-gold-gradient: linear-gradient(135deg, #000000, #c7a008);
  --bs-primary: #c7a008;
  --bs-secondary: #000000;
  
}



/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  background-color: var(--bs-secondary); /* noir */
  color: white;
  border: none;
  transition: background 0.4s ease-in-out;
}

/* Hover avec dégradé noir-doré */
.back-to-top:hover {
  background: var(--black-gold-gradient);
  color: white;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: black;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: black;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #D4AF37; /* Doré */
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: max-height 0.5s ease;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 90px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: #D4AF37; /* Doré */
    color: #000; /* Texte noir pour contraste */
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #D4AF37; /* Doré */
        color: #D4AF37; /* Doré */
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: black;
    }

    .navbar-light .navbar-brand img {
        max-height: 70px;
    }
     .sticky-top.navbar-light .navbar-brand img {
        max-height: 70px; /* pour que la taille sticky soit la même sur mobile */
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px dotted;
        border-left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light); 
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #D4AF37; /* Doré */
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent #D4AF37 transparent; /* Doré */
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
@media (max-width: 991.98px) {
  .navbar-brand img {
    max-height: 70px;
  }
}
/*btn service */
.btn-warning {
  background: linear-gradient(to bottom, #000000, #D4AF37) !important;
  border: none !important;
  color: white !important;
}

.btn-warning:hover,
.btn-warning:focus {
  background: linear-gradient(to bottom, #222222, #bfa94a) !important;
  border: none !important;
  color: white !important;
}

/*logo*/
/* Logo responsive */
.navbar-brand img {
  max-height: 90px;
  height: auto;
  width: auto;
  transition: max-height 0.3s ease;
}

.navbar.fixed-top .navbar-brand img {
  width: 170px;
  height: 300px;
}

/*  vid apres navbar   */
/* ✅ Container vidéo */
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Ratio 16:9 */
  overflow: hidden;
  margin-top: 0; /* ❌ supprime l’espace vide en haut */
  border-radius: 1px; /* ✅ arrondi subtil */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ✅ Vidéo qui remplit */
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* ✅ Overlay + contenu centré */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 2;
}

/* ✅ Texte 100% blanc */
.hero-content {
  color: #ffffff;
  z-index: 3;
}

.hero-content h1,
.hero-content h3 {
  color: #ffffff !important;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 2rem;
}

.hero-content h3 {
  font-size: 1.2rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.0rem;
  }

  .hero-content h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h3 {
    font-size: 1rem;
  }

  .hero-content a.btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}



/*end navbar */

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}


.hero-overlay h1,
.hero-overlay h3 {
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}





/* */
.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/




/*** testimonial Start ***/

/* NAVIGATION : flèches centrées en haut, inversées */
.testimonial .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 30px;
    gap: 20px;
    flex-direction: row-reverse; /* inverse next/prev */
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: static; /* pas absolute */
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 6px 25px;
    border-radius: 30px;
    transition: 0.5s;
    font-size: 18px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/* DOTS pagination personnalisés : noir + doré */
.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--black);
    border: 2px solid var(--gold);
    transition: 0.4s ease-in-out;
    opacity: 0.8;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    background-color: var(--gold);
    box-shadow: 0 0 5px var(--gold);
    transform: scale(1.1);
    opacity: 1;
}

/* STARS dorées */
.testimonial-item .text-secondary i.fa-star,
.testimonial-item .text-secondary i.fa-star-half-alt,
.testimonial-item .text-secondary i.far.fa-star {
    color: var(--gold) !important;
}

/* ICONES utilisateurs avec dégradé */
.testimonial-item i.fa-user-circle {
    background: var(--black-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Responsive mobile */
@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(to bottom, #000000, #D4AF37);
    color: #ffffff;
}

.footer .footer-item a {
    line-height: 35px;
    color: #ffffff;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #D4AF37;
}

.footer .footer-item p {
    line-height: 35px;
    color: #f1f1f1;
}

/* Titres de section */
.footer .footer-item h3,
.footer .footer-item h4 {
    color: #D4AF37;
}

/* Icônes sociales */
.footer .footer-btn a,
.footer .footer-btn a i,
.footer .d-inline-flex a,
.footer .d-inline-flex a i {
    transition: 0.3s ease;
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

/* Hover effet doré sur icônes */
.footer .footer-btn a:hover,
.footer .d-inline-flex a:hover {
    background: #D4AF37;
    border-color: #D4AF37;
}

.footer .footer-btn a:hover i,
.footer .d-inline-flex a:hover i {
    color: #000000 !important;
}


@media (max-width: 768px) {
    /* Masquer la section "About" et les liens */
    .footer-about {
        display: none;
    }
    .footer-links {
        display: none;
    }

    /* Réorganisation en flex (ordre affichage mobile) */
    .footer .row {
        display: flex;
        flex-direction: column;
    }
    .footer-contact {
        order: 1;
    }
    .footer-sm {
        order: 2 !important;
        text-align: center;
         margin: 2px 0 !important;
        padding: 0 !important;
    
    }
    .footer-legal {
        order: 3;
    }

    /* Centrage texte et éléments */
    .footer .footer-item {
        text-align: center;
    }

    /* Réduction taille texte */
    .footer .footer-item a,
    .footer .footer-item p {
        line-height: 26px;
        font-size: 16px;
    }

    /* Icônes réseaux sociaux */
    .footer .d-inline-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px; /* 🔹 Espace entre icônes */
        height: auto !important;
        margin-top: 0 !important;
    }

    /* Boutons plus compacts */
    .footer .btn-sm-square {
        width: 35px;
        height: 35px;
        line-height: 33px;
        padding: 0;
    }
}


/*** Footer End ***/




/* Section Instagram Feed */
.instagram-box {
    padding: 8px 0px;
    background: url(#) no-repeat center center;
    background-size: cover;
    position: relative;
}

.instagram-box::before {
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    content: "";
    position: absolute;
    z-index: 0;
}

.ins-inner-box {
    position: relative;
}

.hov-in {
    opacity: 0;
    
    bottom: -100%;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-out 0.5s;
    text-align: center;
    display: table;
}

.hov-in a {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
}

.hov-in i {
    color: #000000;
    font-size: 48px;
    position: relative;
    z-index: 2;
}

.hov-in a i:hover {
    color: #ffffff;
}

.instagram-box,
.ins-inner-box,
.main-instagram {
    margin: 0 !important;
    padding: 0 !important;
}

/* Owl Carousel dots */
.owl-dots {
    padding-bottom: 5px;
    text-align: center;
    margin-top: 15px;
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.owl-dot.active {
    background: #898a89;
}

/* Image box (Our Work) */
.ins-inner-box img {
    height: 100%;
    object-fit: contain;
    width: 100%;
    display: block;
    margin: auto;
}


/* Work image effect */
.work-img {
    height: 650px;
    position: relative;
    overflow: hidden;
}

.work-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-img:hover .work-image {
    transform: scale(1.05);
}

/* Overlay effect on work hover */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    transition: 0.4s ease-in-out;
}

.overlay h5,
.overlay p {
    margin: 0;
    font-size: 16px;
}

/* Card styling */
.card {
    border-radius: 12px;
    overflow: hidden;
}

.card video.work-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
#our-work{
    background-color: white !important;
}
  

/*degrad noir dore */
.gradient-text {
    background: linear-gradient(to bottom, #000000, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}



/* team start */
.team-section {
  background-color: #f9f9f9;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.team-card h4 {
  font-weight: 700;
  color: #000;
}

.team-card p {
  font-size: 14px;
  line-height: 1.6;
}

.team-card .linkedin {
  display: inline-block;
  margin-top: 15px;
  font-size: 18px;
  color: #0e76a8;
  background: #e8f4fb;
  padding: 10px 12px;
  border-radius: 50%;
  transition: background 0.3s;
}

.team-card .linkedin:hover {
  background: #c7a008;
  color: #fff;
}

/* Animation on scroll */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
