@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body, html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: #0d1b2a;
  padding-top: 70px;
  font-family: sans-serif, "Inter";
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: #1f1f1f;
}

p {
  font-weight: 400;
}

.btn {
  padding: 10px 20px;
  background-color: #1f1f1f;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

.demande-de-devis {
  background-color: #1f1f1f;
  color: white;
  margin-top: 50px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #1f1f1f;
}
.demande-de-devis:hover {
  background-color: transparent;
  color: #1f1f1f;
  transition: 0.3s;
  border: 2px solid #1f1f1f;
}

/* Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #1f1f1f;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Navbar */
.navbar {
  background-color: #fff;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo > img{
  height: 73px;
}

.nav-link {
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-decoration: none;
  color: #0d1b2a !important;
  font-size: 15px;
  font-family: sans-serif, "Inter";
  font-weight: 500 !important;
}

.nav-link:hover {
  color: #646464 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #1f1f1f;
  margin: 3px 0;
  transition: 0.4s;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  border: none;
  font-weight: 400;
  transition: 0.3s;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 10px;
  padding: 10px;
  font-weight: 400;
  background-color: #fff;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  transition: 0.3s;
}
.dropdown-content a{
  color: #0d1b2a;
  font-weight: 400;
  text-decoration: none;
}
.dropdown-content a:hover{
  color: #2661a0;
  font-weight: 400;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hero section */
.hero {
  padding: 80px 20px;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: #0d1b2a;
}

@media (max-width: 768px) {
.hero-text h1 {
  font-family: "Inter", sans-serif;
  font-size: 30px;
}


}



.hero-image {
  height: 300px;
  background-image: url('https://via.placeholder.com/400x300');
  background-size: cover;
  background-position: center;
}

/* About section */
.about {
  padding: 60px 20px;
}

/* Services */
.services {
  background: linear-gradient(135deg, #0d1b2a, #1f4068);
  color: white;
  padding: 60px 20px;
}

.services .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-box {
  background: #1f4068;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* Works Slider */
.slider-section {
  padding: 60px 20px;
  background: #f4f6fb;
}

.slider-container {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-card {
  background: white;
  padding: 20px;
  margin-right: 20px;
  border-radius: 10px;
  min-width: 250px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.slider-controls {
  text-align: center;
  margin-top: 10px;
}

/* CTA */
.cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.cta .overlay {
  padding: 40px;
  color: white;
  text-align: center;
  border-radius: 8px;
}

/* Contact */
.contact {
  padding: 60px 20px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact form {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input, .contact textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Footer */
.footer {
  background: linear-gradient(to right, #0d1b2a, #1f4068);
  color: white;
  padding: 40px 20px;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links, .footer-contact {
  list-style: none;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  color: #ccc;
  font-size: 14px;
}
.hero-text p{
  font-family: sans-serif, "Inter";
  font-size: 25px;
}
.cta-title{
          font-size: 2rem;
        color: #0d1b2a;
        font-weight: 800;
        font-size: 60px;
        font-family: sans-serif, "Inter";
}
.cta-sub{
        font-family: sans-serif, "Inter";
          font-size: 25px;
  font-weight: 500;
  color: rgb(49, 49, 49);
  width:  45%;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
 .cta-title{
        font-size: 38px;
      }
      
.cta-sub{
          font-size: 18px;
  width:  70%;
}

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .hero .container {
    flex-direction: column;
  }
  .hero-image {
    width: 100%;
    height: 200px;
  }
  .contact {
    flex-direction: column;
    gap: 30px;
  }
  .hero-text p{
    font-size: 15px;
  }
}
.navbar-expand-lg .navbar-collapse{
  justify-content: center;
}
.btncontact{
  font-size: 15px;
  text-decoration: none;
  margin-right: 10px;
  color: #0d1b2a;
  transition: 0.3s;
  padding: 15px 20px;
  background-color: white;
  border-radius: 0;
  border: 1px #0d1b2a solid;
}
.btncontact:hover{
  color: white;
  background-color: #0d1b2a;
  border: 1px #0d1b2a solid;
  transition: 0.3s;
}
.btnourworks{
  font-size: 15px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  margin-left: 10px;
  padding: 15px 20px;
  background-color: #0d1b2a;
  border-radius: 0;
  border: 1px #0d1b2a solid;
}
.btnourworks:hover{
  color: #0d1b2a;
  background-color: #ffffff;
  border: 1px #0d1b2a solid;
  transition: 0.3s;
}
.B-logo-alone{
  border-radius: 19px;
  color: white;
  background-color: #0d1b2a;
  font-size: 50px;
  margin-right: 15px;
  font-weight: 700;
  padding: 18px 27px;
}
.B-story{
  align-items: center;
  font-size: 50px;
  font-family: sans-serif, "Inter";
  font-weight: 700;
}
.byteblow-story-text{
  padding-top: 50px;
  color: #0d1b2a;
}
.bg-light{
  background-color: #EAECF0 !important  ;
}
.service > div > h5{
  color: #0d1b2a !important;
  font-family: sans-serif, "Inter";
  font-weight: 400;
}
.service > div > img{
  border-radius: 16px;
  top: -95px;
  position: relative;
}

.service{
  margin-bottom: 80px;
}
.service > div{
  transition: 0.4s;
  margin-bottom: 80px;
  box-shadow: 0 21px 46px -7px #0d1b2a;
}
.service > div:hover{
  transform: translateY(-10px);
  transition: 0.4s;
}
.card-text{
  width: 250px; /* Or whatever fixed width you're using */
  white-space: normal;       /* Allow text to wrap */
  word-wrap: break-word;     /* Break long words */
  overflow-wrap: break-word; /* Modern equivalent */
}
#slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.slider-card {
  flex: 0 0 auto;
  width: 300px;
}
.btncontact-ourworks{
  font-size: 15px;
  text-decoration: none;
  color: #0d1b2a;
  transition: 0.3s;
  padding: 15px 40px;
  background-color: white;
  border-radius: 0;
  border: 1px #0d1b2a solid;
}
.btncontact-ourworks:hover{
  color: white;
  background-color: transparent;
  border: 1px white solid;
  transition: 0.3s;
}
/* === Scoped styles for Contact Form === */
.contact-form-byteblow {
  background-color: #f8f9fa;
}

.contact-form-byteblow h2 {
  font-weight: 700;
}

.contact-form-byteblow .form-label {
  font-weight: 500;
}

.contact-form-byteblow .form-control {
  background-color: transparent !important;
  border: 1.25px solid #1b1b1b;
  padding: 13px;
  border-radius: 0;
}

.contact-form-byteblow .btn-dark {
  font-weight: 600;
}
.send-message{
  background-color: #1B263B;
  color: white;
  padding: 7px 60px;
}
/* For small devices */
@media (max-width: 860px) {
  .gps-integration{
    display: none;
  }
}
