/* Import Dosis font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;500;600;700&display=swap');

/* Apply Dosis font globally with a bolder weight */
body {
  font-family: 'Dosis', sans-serif;
  font-weight: 600; /* Use semi-bold */
  margin: 0;
  padding: 0;
}



/* Topbar styling */
.topbar {
  background-color: #f8f9fa;
  font-size: 14px;
  padding: 5px 0;
}

.topbar a {
  text-decoration: none;
  color: #333;
}

/* Navbar styling */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-img {
    height: 70px;
  }

  @media (max-width: 768px) {
    .logo-img {
      height: 50px; /* মোবাইলে একটু ছোট দেখাবে */
    }
  }

.nav-link {
  color: #333;
  margin-right: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #046BD2;
}

.h2 {
  color: #198754;
}



.decor {
  position: absolute;
  z-index: 1;
  width: 60px;
  opacity: 0.8;
}

.decor-balloon {
  top: 10px;
  left: 20px;
}

.decor-star {
  bottom: 20px;
  right: 30px;
}

.decor-toy {
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.bg-image-section {
  background-image: url('SMART-SCHOOL-WEBSITE-21-1536x516.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}


  .fs-4 a:hover {
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }

.footer {
  font-family: 'Dosis', sans-serif;
}

.footer h4, .footer h5 {
  color: white;
}

.footer h5 :hover {
   color: #CAD300
}

footer i.position-absolute {
  transition: transform 3s ease-in-out infinite alternate;
  animation: floatIcons 4s ease-in-out infinite;
}

@keyframes floatIcons {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(5px); }
  100% { transform: translateY(0) translateX(0); }
}

.footer .form-control {
  font-size: 14px;
}

.footer .btn-warning {
  background-color: #CAD300;
  border: none;
}

.footer .btn-warning:hover {
  background-color: #CAD300;
}

.social-icon {
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }
  .social-icon:hover {
    color: #FFC107;
    transform: scale(1.2);
  }

.quick-links a:hover {
    color: #CAD300 !important;
}

.social-links a:hover {
    color: #146c43 !important;
}

#backToTopBtn {
  background-color: #CAD300; /* Green */
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  border: none;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#backToTopBtn:hover {
  background-color: #146c43; /* Darker green on hover */
  transform: scale(1.1);
}

.clients-slider {
  position: relative;
  height: 100px;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.client-logo {
  flex: 0 0 auto;
  width: 150px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
    .col-md-6 img {
      margin-top: 30px;
    }
  }