@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  background: #060f13;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
}
.bg {
  background: #000 url(../images/bg.png) center / cover no-repeat;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  position: relative;
  background-color: #060f13;
  padding-block: 28px;
}
.header__inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #47a7d4;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.header__logo .dot {
  width: 7px;
  height: 7px;
  background-color: #47a7d4;
  border-radius: 50%;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__nav a {
  display: block;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header__nav a.active {
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid #47a7d4;
  color: #47a7d4;
}
.close-img {
  display: none;
}

.header__menu {
  display: none;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.contact__title {
  color: #fff;
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%; /* 57.04px */
  margin-bottom: 30px;
  text-align: center;
}
.form {
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form input::placeholder {
  color: #fff;
}
.form input {
  display: block;
  width: 100%;
  color: #fff;
  border-radius: 99px;
  border: 1px solid #47a7d4;
  color: #fff;
  background-color: transparent;
  padding: 14px;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.form button {
  background-color: #47a7d4;
  color: #fff;
  border-radius: 99px;
  display: block;
  padding: 14px;
  width: 100%;
  color: #fff;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%; /* 29.76px */
  text-align: center;
}
.footer {
  padding-block: 36px;
}

.footer__inner {
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #47a7d4;
}
.footer__logo {
  display: block;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  display: block;
  color: #fff;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 116%; /* 18.56px */
}
.footer__copyright {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.footer__s {
  max-width: 116px;
  width: 100%;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    transform: translateY(-100%);
  }
  .header__menu {
    display: block;
  }

  .show-menu .menu-img {
    display: none;
  }
  .show-menu .close-img {
    display: block;
  }
  .show-menu .header__nav {
    display: flex;
    position: absolute;
    bottom: 0;
    gap: 0;
    left: 0;
    width: 100%;
    right: 0;
    flex-direction: column;
    background-color: #060f13;
    z-index: 10;
    gap: 0;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(98%);
  }
  .show-menu .header__nav a {
    padding-block: 20px;
    text-align: center;
    width: 100%;
    border: none;
    border-radius: initial;
    padding-inline: 10px;
    border-bottom: 2px solid #47a7d4;
  }
  .show-menu .header__nav a:last-child {
    border-bottom: none;
  }
  .footer {
    text-align: center;
  }
}
@media (max-width: 420px) {
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  max-width: 819px;
  width: 100%;
  color: #fff;
  font-family: Poppins;
  font-size: 51px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%; /* 63.24px */
  margin-bottom: 16px;
}
.terms p {
  max-width: 819px;
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* thank-page */
.th__title {
  max-width: 819px;
  width: 100%;
  color: #fff;
  font-family: Poppins;
  font-size: 51px;
  font-style: normal;
  font-weight: 700;
  line-height: 124%; /* 63.24px */
  margin-bottom: 18px;
}
.th__text {
  max-width: 819px;
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
@media (max-width: 768px) {
  .th__title {
    font-size: 32px;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  width: 100%;
  padding-bottom: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.hero-content {
  width: 1120px;
  max-width: 100%;
}

.hero-text-container {
  width: 819px;
  max-width: 100%;
}

.hero-title {
  color: rgba(255, 255, 255, 1);
  font-size: 51px;
  font-weight: 700;
  line-height: 63px;
}

.hero-description {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 18px;
}

.hero-image {
  aspect-ratio: 4.44;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 32px;
}

/* About Section */
.about-section {
  display: flex;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: stretch;
  gap: 40px 188px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  align-self: start;
}

.about-content {
  flex-grow: 1;
  flex-shrink: 1;
  width: 819px;
}

.about-title {
  color: rgba(255, 255, 255, 1);
  font-size: 46px;
  font-weight: 700;
  line-height: 57px;
}

.about-description {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 16px;
}

/* Services Section */

.service-card {
  border-radius: 16px;
  background-color: rgba(217, 217, 217, 0.04);
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  flex-grow: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(217, 217, 217, 0.06);
}

.service-header {
  display: flex;
  width: 100%;
  align-items: start;
  gap: 40px 100px;
  font-size: 16px;
  color: rgba(71, 167, 212, 1);
  font-weight: 500;
  white-space: nowrap;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-label {
  position: relative;
  align-self: flex-start;
  border-radius: 99px;
  border-color: rgba(71, 167, 212, 1);
  border-style: solid;
  border-width: 1px;
  padding: 6px 10px;
  gap: 4px;
  width: fit-content;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.service-label::before {
  content: "• ";
}
.service-card:hover .service-label {
  background-color: rgba(71, 167, 212, 0.1);
}

.service-image {
  max-width: 211px;
  width: 100%;
}

.service-content {
  align-self: center;
  margin-top: 60px;
}

.service-title {
  color: rgba(255, 255, 255, 1);
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.service-description {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 16px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
  }

  .hero-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 55px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-image {
    max-width: 100%;
  }

  .about-section {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content {
    max-width: 100%;
  }

  .about-title {
    max-width: 100%;
    font-size: 40px;
    line-height: 56px;
  }

  .about-description {
    max-width: 100%;
  }

  .services-row {
    max-width: 100%;
  }

  .service-card {
    max-width: 100%;
  }

  .service-header {
    max-width: 100%;
    white-space: initial;
  }

  .service-label {
    white-space: initial;
  }

  .service-content {
    margin-top: 40px;
  }

  .service-title {
    max-width: 100%;
  }

  .service-description {
    max-width: 100%;
  }
}

/* Accessibility focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: 3px solid rgba(71, 167, 212, 0.5);
  outline-offset: 2px;
}

/* Animation for hover effects */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.service-card:active {
  transform: scale(0.98);
}
.projects-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}
.b3 {
  padding-block: 166px 40px;
}
.header-content {
  display: flex;
  align-items: flex-start;
  gap: 188px;
}

.header-title {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.header-subtitle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.header-subtitle {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 57px;
}

.header-description {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;

  padding: 16px;
  border-radius: 16px;
  background-color: rgba(217, 217, 217, 0.04);
}

.book-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.book-icon {
  width: fit-content;
}

.book-image {
  max-width: 211px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.book-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.book-title {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.book-description {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

@media (max-width: 991px) {
  .projects-container {
    max-width: 991px;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .book-card {
    width: 100%;
  }

  .books-grid {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
}

@media (max-width: 640px) {
  .b3 {
    padding-block: 40px;
  }
  .projects-container {
    max-width: 640px;
  }

  .books-grid {
    padding: 20px;
  }

  .book-card {
    width: 100%;
  }

  .book-content {
    width: 100%;
  }
  .book-card {
    gap: 20px;
  }
  .service-content {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .book-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
