* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background-color: #111;
  scroll-behavior: smooth;
}
header,
section,
footer {
  padding-left: 2rem;
  padding-right: 2rem;
}
a {
  text-decoration: none;
  color: inherit;
}
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background-color: #cf6dcf;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: scale(1.05);
}
.btn-secondary {
  background-color: #111;
  color: #cf6dcf;
  border: 2px solid #cf6dcf;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
}

.section-des {
  font-size: 1.25rem;
  max-width: 1200px;
  margin-inline: auto;
  line-height: 130%;
  display: block;
  margin-bottom: 1.5rem;
}
p {
  font-size: 16px;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #d1d5db;
  background: #000;
  border-top: 1px solid #333;
  margin-top: 2rem;
}
header {
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.site-header {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #000;
  /* position: sticky; */
  top: 0;
  z-index: 50;
}
.brand img {
  height: 70px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 1.5rem;
  margin-right: 60px;
}
.nav a {
  font-weight: 800;
  font-size: 1rem;
  transition: color 0.2s ease;
  text-decoration: none;
  color: #fff;
}
.nav a:hover {
  color: #cf6dcf;
}

.nav a.active {
  color: #cf6dcf;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-right img {
  margin-top: 3px;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease-in-out;
}

.nav-right a:hover img {
  transform: scale(1.05);
}
html {
  scroll-padding-top: 80px;
}
.common-wrap {
  max-width: 1080px;
  margin: auto;
}
.gradient-section {
  background: linear-gradient(-45deg, #111, #1f1f1f, #cf6dcf);
  background-size: 400% 400%;
  /* animation: gradientShift 12s ease infinite; */
  color: #fff;
}

.home-cta {
  display: inline-block;
  /* margin-top: 20px; */
}

.services-section {
  padding: 4rem 2rem;
  max-width: 1024px;
  margin: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.card {
  background: linear-gradient(-45deg, #111, #1f1f1f, #cf6dcf);
  background-size: 400% 400%;
  padding: 1rem 2rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}
p,
li {
  color: #d1d5db;
}

.gradient-section.partners {
  min-height: calc(100vh - 240px);
}
.gradient-section.partners .section-title {
  margin-top: 80px;
}
.partners-footer {
  margin-top: 0;
}

.partners-card-wrapper {
  max-width: 1440px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.partners-card {
  background: #ffffff;
  padding: 1rem;
  height: 150px;
  max-width: 300px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-card img {
  max-width: 60%;
  object-fit: contain;
}
.section-des.about {
  max-width: 1080px;
}
.about-cards-section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-card {
  background: linear-gradient(-45deg, #111, #1f1f1f, #cf6dcf);
  background-size: 400% 400%;
  padding: 1.4rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.about-card h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}

.team-card-container {
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 0.2rem; */
}
.team-card h2 {
  margin: 0.5rem 0 0 0;
}
.team-card img {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  /* object-fit: cover; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #333;
  background: #1f1f1f;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #cf6dcf;
  box-shadow: 0 0 0 3px rgba(207, 109, 207, 0.3);
}

.contact-form .btn {
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ffffff;
}

.contact-form input[type='file'] {
  cursor: pointer;
}
input[type='file']::file-selector-button {
  background-color: #cf6dcf;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 10px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}
.gradient-section.home {
  min-height: calc(100vh - 180px);
  display: grid;
  place-items: center;
}
.home-footer {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .gradient-section.home {
    min-height: calc(100vh - 180px);
  }

  .partners-card {
    width: 100%;
  }

  .gradient-section {
    padding: 1rem !important;
  }
  .gradient-section p {
    font-size: 1rem !important;
  }
  .gradient-section h2 {
    font-size: 1.5rem !important;
  }
  .nav {
    margin: 0;
    display: none;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    gap: 1rem;
    background: #111;
    position: absolute;
    top: 92px;
    right: -100%;
    padding: 3.5rem;
    min-height: 100vh;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  .nav-right {
    display: none;
    position: absolute;
    top: 350px;
    right: 50%;
    transform: translateX(50%);
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
  }
  .nav-right .btn {
    padding: 15px;
  }

  .nav-right.show {
    display: flex;
  }

  .nav.show {
    display: flex;
    right: 0;
  }

  .site-header {
    flex-wrap: wrap;
    padding: 1rem 0.5rem;
  }

  .mobile-menu {
    display: block;
  }

  .brand img {
    height: 60px;
  }

  .services-section {
    padding: 1rem;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .team-card img {
    width: 250px;
    height: 250px;
  }
}
