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

html, body {
  height: 100%;
}

body {
  font-family: 'Montserrat', sans-serif !important;
  background: rgb(247, 245, 247) !important;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

nav {
  z-index: 1000;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  padding: 20px 100px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li a {
  margin: 0 1.5rem;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: normal;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #40b9ff;
}

nav h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: normal;
  color: white;
}

.btn {
  display: inline-block;
  margin-top: 40px;
  padding: 10px 20px;
  background: #406dff;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #0032e6;
}

section {
  padding: 150px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem !important;
  margin-bottom: 60px;
  font-weight: bold;
}

.hero-title {
  font-size: 2.5rem !important;
  margin-bottom: 60px;
  font-weight: bold;
}

.services {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service {
  max-width: 300px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}

h3 {
  color: #1c1c1c !important;
  font-size: 1.3rem !important;
  margin: 2rem 0rem !important;
  font-weight: bold !important;
}

.service p {
  font-size: 0.95rem;
  color: #555;
}

footer {
  background-color: #121824;
  color: #c9d1d9;
  text-align: center;
  padding: 20px;
}

.icon {
  font-size: 2rem;
  color: #ff4081;
  background: rgba(95, 95, 95, 0.1);
  width: 90px;
  height: 90px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 15px;
}

.icon img {
  vertical-align: middle;
  width: 40px;
  height: 40px;
}

nav.scrolled {
  background: rgba(37, 88, 111, 1);
  transition: background 0.5s ease;
}

@media (max-width: 800px) {
  section.about {
    padding: 80px 40px 0px 40px;
  }

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

a.craftlabs {
  color: #c300d8;
  font-weight: bold;
}

.about p {
  margin: auto;
  max-width: 800px;
}

.partner {
  text-align: center;

}

.partner p {
  margin: auto;
  max-width: 800px;
  margin-bottom: 2rem;
}

.partner-card {
  max-width: 975px;
  background: white;
  padding: 25px;
  border-radius: 20px;
  margin: auto;
}

@media (min-width: 1200px) {
  section p {
    font-size: 1.1rem !important;
  }
}

.about p {
  margin-bottom: 40px;
}

p span {
  font-weight: bold;
  color: hsla(0, 0%, 0%, 0.7);
}

.hero-banner {
  background: linear-gradient(0deg, rgba(37, 88, 111, 1) 0%, rgba(21, 37, 50, 1) 100%);

  color: #fff;
  padding: 200px 20px;

}

.hero-content {
  display: flex;

  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-text h3 {
  font-size: 1.3rem;
  font-weight: normal;
  color: #1ecce2;
  margin-bottom: 0.5rem;
}

.hero-text {
  flex: 1;
  margin-right: 100px;
  text-align: left;
}

.hero-text h2 {
  font-size: 2.7rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  height: auto;
  width: 800px;
}

@media (max-width: 800px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .hero-image {
    text-align: right;
  }
}

.custom-btn {
  background-color: #1ecce2 !important;
  font-weight: bold !important;
  border-radius: 25px !important;
  padding: 10px 30px !important;
  transition: background 0.3s ease !important;
}

.custom-btn:hover {
  background-color: white !important;
}

.custom-btn-black {
  background-color: black !important;
  color: white !important;
  font-weight: bold !important;
  border-radius: 25px !important;
  padding: 10px 40px !important;
  transition: background 0.3s ease !important;
}

.custom-btn-black:hover {
  background-color: white !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: black !important;
  color: black !important;
}

.navbar {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(10px);
  padding: 20px 100px;
  z-index: 1000;
}

.navbar-brand {
  letter-spacing: 2px !important;
  color: white;
  font-size: 1.5rem !important;
  font-weight: normal;
}

.navbar-brand:hover {
  color: white !important;
}

.nav-link {
  color: white !important;
  margin: 0 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #40b9ff !important;
}

.navbar-toggler {
  border: none !important;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.white-bg {
  background-color: white !important;
}

@media (max-width: 800px) {
  .navbar-brand {
    display: none;
  }

  .navbar-nav {
    width: 100%;
    text-align: center;
  }

  .navbar {
    justify-content: center;
    padding: 20px;
  }
}

.cl-img{
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: auto;
  border-radius: 20px;
}

.partnership-section{
  margin-left: 50px;
}

.partnership-h2{
  margin-bottom: 40px !important;
}

.margin-services{
  /* padding: 0 200px; */
  max-width: 1000px;
  margin: auto;
}