 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0066cc;
            --secondary: #00a3e0;
            --accent: #ff6b35;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #3d4144;
            --gradient: linear-gradient(152deg,rgba(25, 229, 210, 1) 10%, rgba(138, 77, 232, 1) 100%, rgba(253, 187, 45, 1) 96%);
        }
        
        
        
            body {
             font-family: "Inter", sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
input{
padding:15px!important;
}

        i{
            color:#FDBB2D;
            margin-right: 10px;
        }
.wtc-80 {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

        /* topbar */
        .topbar{
            display:block;
            height: 55px;
            width: 100%;
              padding: 5px 0;
background: #181a19;
            color:white;
            font-size: 1rem;
            display:flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Navigation */
       /* ===== NAVBAR BASE ===== */
/* NAVBAR PRO */
.navbar .nav-link {
  font-size: 1rem;
  color: #1a1a2e;
  position: relative;
gap:1.1rem
}


.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}


.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #FDBB2D;
  transition: width 0.3s ease;
}

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

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

nav {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.nav-container {
  max-width: 980px;
  padding: 1.2rem 2rem;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Liens desktop */
.nav-links {
display:flex;
  gap: 1.5rem;
}

.nav-links .nav-link {
  font-size: 1rem;
  color: var(--dark);
  position: relative;
}

/* Hover underline */
.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #FDBB2D;
  transition: width 0.3s ease;
}

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

/* CTA */
.cta-button {
  background: #FDBB2D;
  color: #000;
  border-radius: 50px;
  font-size: 1.2rem;
  padding: 1rem 1.7rem;
white-space: nowrap;
  flex-shrink: 0;
}


  .cta-button:hover {
  background-color:orange;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


}
/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .wtc-80 {
    width: 95%;
  }
}

@media (max-width: 991px) {

  /* bouton burger */
  .mobile-menu-btn {
    font-size: 2rem;
    border: none;
    background: transparent;
  }

  /* menu */
  .nav-links {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
    background: white;
    padding: 1.5rem 0;
  }

  .nav-links .nav-item {
    margin-bottom: 1rem;
  }

  /* CTA sous le menu */
  .cta-button {
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}


        /* Hero Section */
        .hero {
            background-image: url("assets/img/hero_bg.jpg");
            background-size: cover;
            color: white;
            padding: 120px 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: 550px;
            display:flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            animation: fadeInUp 0.8s ease;
        }

        .hero p {
            font-size: 2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        width:60%;
        margin:auto;
        margin-bottom:40px;
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            animation: fadeInUp 0.8s ease 0.4s backwards;
        }

        .btn-primary,
        .btn-secondary {
            font-size:1.3rem;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: var(--primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Sections */
        section {
            padding: 80px 2rem;
        }

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

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

        .section-title h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #1FA6E8
        }

        .section-title p {
            font-size: 1.5rem;
            color: var(--gray);
            max-width: 80%;
            margin: 0 auto;
        }

        /* Company Intro */
        .company-intro {
            background:#f1f1f1;
        }

        .intro-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .intro-card {
            font-size: 1.3rem;
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease-in-out;
            border-bottom: solid 10px #1f76e8;
        }

        .intro-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border:solid 3px #1f76e8;
            cursor: pointer;
        }

        .intro-card h3 {
            color: #f8aa03;
            margin-bottom: 1rem;
            font-size: 2.1rem; 
        }

        .certifications  .intro-card h3 {
            color: rgb(2, 83, 175)
        }

        .intro-card p {
            color: var(--dark);
            line-height: 1.8;
        }

        /* Products Section */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: #dadef7;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .product-card:hover {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
            transform: translateY(-5px);
        }

        .product-icon{
            background-color: #dadef7;
        }
        .product-icon img {
            height: 300px;
            width: 100%;
        }

        .product-content {
            padding: 2rem;
            background-color: #dadef7;
        }

        .product-content h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .product-content p {
            color: var(--gray);
            font-size: 1.2rem;
        }

        /* Industries Section */
        .industries {
            background: #e3f1fa;
            padding-bottom: 5rem;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
            gap: 2rem;
        }

       

        .industries h1{
            font-size: 3.8rem;
            color:#3366f3
        }

        .industry-item {
            position: relative;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 320px;
            width: 100%;
        }

       
        .industry-title{
            position:absolute;
            top:0;
            left:0;
            height: 100%;
            width:100%;
            background-color: rgba(0, 0, 0, 0.1);
            z-index: 50;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            cursor:pointer;
            color:white;
        }

         .industry-title h2,  .industry-title p{
            display:none
         }

			.industry-title h2{
            font-size: 1.7rem;
            
          }

          .industry-title p{
            font-size: 1.3rem;
            color: orange;
          }

        .industry-item img{
            height: 100%;
            width: 100%;
        }

        .industry-item:hover {
            transition: all 0.3s ease-in-out;
            transform: scale(1.01);
         }

         .industry-title:hover {
         background-color: rgba(0, 2, 5, 0.801);
        }

        .industry-title:hover h2, .industry-title:hover p{
            display:block
        }

        

       

        /* Why Choose WTC */
        .why-choose {
            background: var(--dark);
            color: white;
        }

        .why-choose .section-title h2,
        .why-choose .section-title p {
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

         .feature-item h3{
            font-size: 2rem !important;
            color: rgb(255, 209, 2);

         }
          .feature-item p{
            font-size: 1.5rem !important;
            font-weight: 300;
          }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgb(166, 243, 239);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .feature-item h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .feature-item p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* Certifications */
        .certifications {
            text-align: center;
            background-image: url("assets/img/iso.jpg");
            background-repeat: no-repeat;
            background-size: 100%;
        }

         .certifications h2{
            color:orangered
         }

        .cert-grid {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .cert-badge {
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            transition: transform 0.3s ease;
            cursor: pointer;
            background-color: rgb(4, 18, 49);
        }

        .cert-badge:hover {
            transform: translateY(-10px);
        }

         .cert-badge p{
            font-size: 1.3rem;
            color:white !important
         }

        .cert-badge h4 {
            color: rgb(233, 2, 2);
            font-size: 2rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        /* A propos */
        .apropos{
            font-size: 1.6rem;
        }

         .apropos img{
            width: 100%;
         }

        
        

         .apropos h3{
            font-size: 2rem;
            color: rgb(221, 144, 2);
        }

        /* innovation */
        #innovation{
            background-image: url("assets/img/inno.jpg");
            background-position: top center;  
            background-repeat: no-repeat; 
            background-size: 45%;
        }

        #innovation .section-title p{
            color:rgb(0, 0, 0)
        }

          #innovation .intro-card{
            background-color: #ececec !important;
            transition: all 0.2s ease-in-out ;
          }

        #innovation h2{
            color:rgb(7, 7, 7)
        }

            #innovation .section-title{
                margin-bottom: 5rem;
            }

         #innovation h3{
            color: #f3a005;
         }

          #innovation .intro-card:hover{
            background-color: white!important;
          }

        /* Contact Section */
     
        .form-label{
            font-size: 1.2rem;
            font-weight: bold;
        }
        

        .submit-btn {
            background-color:  rgba(250, 163, 0);
            color: black;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            background-color: rgb(5, 29, 136);
            color:white
        }

       

        .contact-card{
                background-color: #e8fcfa;
            border-radius:10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-right: 30px;
            gap:3px;
            padding: 5px;
            text-align: center;
			box-shadow: 5px 5px 15px rgba(0,0,0,0.3); 
    		cursor: pointer;       
}


.contact-card:hover{
                background-color: #ffffff;

}

        .contact-card i{
            font-size: 1.5rem;
            color: #fcbe03;
        }
             .contact-card h3{
                font-size: 1.2rem;
                color:rgb(2, 77, 148)
             }

             .contact-card p{
                font-size: 0.8rem!important;
                color: #032858;
             }

        #contact{
            background: #d4fdff;
background: linear-gradient(147deg, rgba(212, 253, 255, 1) 0%, rgba(38, 209, 203, 1) 100%);
         }

        #contact h1{
        margin-bottom:20px;
            font-size: 2.5rem;
            color:rgb(4, 75, 155);
            font-weight: bold;
        }

         #contact p{
            font-size: 1.5rem;
            margin-bottom: 30px;
            color:rgb(1, 50, 105);
         }

        /* Footer */
        footer{
            padding:20px 5%;
            background: #264ba3;
            background: linear-gradient(226deg, rgba(38, 75, 163, 1) 0%, rgba(2, 40, 120, 1) 100%); 
            color:white;
            font-size: 1.4rem;
        }

        .list-unstyled li a:hover{
            color:orange!important
        }

        .lien-rapide{
            font-size: 1.5rem;
            color:rgb(247, 209, 43)
        }

        .entreprise-name{
            font-size: 1.1rem;
            letter-spacing: 1.7px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
             #innovation{
            background-size: 100%;
        }

             .certifications {
            background-size: cover;
        }

             .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
            gap: 2rem;
        }

        .industries h1{
            font-size: 4rem;
        }

        .industry-item {
            height: 320px;
            width: 100%;
        }
            
        

           

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }
             #innovation{
            background-image: url("assets/img/inno.jpg");
        }
         #innovation h2{
            font-size: 3rem;
            margin-bottom: 40px;
        }
        #innovation .section-title p{
            width: 100%;
            color:black;
        }
    }

        #scrollTopBtn {
            text-align: center;
            width: 70px;
            background-color: rgb(36, 140, 238);
            height: 100px;
            border-radius: 15px;
            display: none;
            font-size: 20px;
            z-index: 999;
        }
           #scrollTopBtn i{
            font-size: 2.2rem;
            font-weight: bolder;
            color:white
           }


           /********************
           Mobile size
           ***********************/
           @media (max-width: 576px) {

  /* TOPBAR */
  .topbar {
    font-size: 0.6rem;
  }

  .topbar i{     
            margin-right:3px;
  }
  .cta-button {
    display:none
  }
  
        .logo img{
            height: 30px;
            width: 100px;
        }
        .nav-container {
          
            padding:5px 10px;
        }
        .hero {
            height: 500px;
        }
         .company-intro h2{
            margin-bottom: 5px;
        }
        .apropos{
            font-size: 1.2rem;
        }

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

        .section-title h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
       
        }

        .section-title p {
           font-size: 1.2rem;
        }
        .products-grid, .features-grid ,.intro-grid {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 3rem;
        }
        .apropos h3 {
            font-size: 1.5rem;
        }
         .industries h1{
            font-size: 2.5rem;
            color:#3366f3
        }
         .feature-item {
            padding:5px;
        }
         .feature-item h3{
            font-size: 1.5rem !important;
         }
          .feature-item p{
            font-size: 1.2rem !important;
          }
          .certifications {
            background-repeat: no-repeat;
            background-size: contain;
            background-color: #ebe9e9;
        }
         #innovation{
            padding-top: 2rem; 
            background-size: 120%;
        }

        #innovation .section-title p{
            font-size: 1.2rem;
        }
        #innovation .section-title{
                margin-bottom: 10px;
            }
            .intro-card {
            font-size: 1.1rem;
            background: white;
            padding: 2rem;
        }
        .intro-card h3 {
            
            font-size: 1.5rem; 
        }
        .contact-card h1{
            font-size: 1.5rem;
        }
         .contact-card p{
            font-size: 1rem;
            color:#0e0247
        }
      .contact-card{
        display: flex;
        flex-direction: column; /* vertical */
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px;
        margin-right: 0;
    }

    .contact-card i,
    .contact-card h5,
    .contact-card p{
        margin: 0 auto;
        text-align: center;
    }     
           .col-lg-3{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-card{
        width: 90%;
        margin: 0 auto;
    }
        
         .contact-card i{
            font-size: 2rem;
            color:#fcbe03;
        }
             .contact-card h3{
                display: none;
             }

             .contact-card p{
                font-size: 1rem;
                color: #032858;
             }
             .product-icon img {
            height: 200px;
            width: 100%;
        }
            .btn-primary,
        .btn-secondary {
            font-size:1rem;
            padding:0.5rem 1rem;
            border-radius: 25px;
           
        }
    

}