@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #f8f208;
  --primary-color-dark: #ee9821;
  --secondary-color: #04091d;
  --secondary-color-light: #0f1221;
  --secondary-color-dark: #03060f;
  --text-light: #94a3b8;
  --white: #ffffff;
  --skyblue: #89CFF0;
  --max-width: 1200px;
  --gradient: linear-gradient(
    to right,
    var(--primary-color-dark),
    var(--primary-color)
  );
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}


.section__subheader {
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
  color: #04091d;
}

.section__description {
  max-width: 600px;
  margin-top: 1rem;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.5rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--secondary-color);
  background-image:  linear-gradient(109.6deg, rgb(245, 239, 249) 30.1%, rgb(207, 211, 236) 100.2%);
  border-radius: 5rem;
  cursor: pointer;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  color: #03060f;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #03060f;
  background-color: #abb8c3;
}

.header {
  position: relative;
  background-color: white;
}

.header__socials {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}

.header__socials a {
  padding: 7px 13px;
  font-size: 1.5rem;
  color: #03060f;
  background-image: linear-gradient(109.6deg, rgb(245, 239, 249) 30.1%, rgb(207, 211, 236) 100.2%);
}

.ri-menu-3-line::before{
  color: #04091d;
}

.ri-close-line::before{
  color: #04091d;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__bar {
  position: relative;
  isolation: isolate;
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color:white;
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 700;
}



.nav__links {
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transform: translateY(-100%);
  background-color: white;
  transition: 0.2s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
  z-index: 100; /* Bring the menu to the front */
}

.link a {
  transition: 0.3s;
}

.link.btn a {
  color: #03060f !important;
}

.link a:hover {
  color:  #abb8c3;
}

.nav__menu__btn {
  font-size: 1.5rem;
  cursor: pointer;
}

.header__container {
  padding-top: 10rem;
  display: grid;
  gap: 4rem;
}

.header__image img {
  max-width: 400px;
  margin: auto;
}

.header__content {
  text-align: center;
}

.header__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.5rem;
}

.header__content p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.project__section .project_heading-image {
  background-color: white;
}

.project_heading-image {
  text-align: center;
  padding: 4rem 0;
}

.project_heading-image .project__container {
  max-width: var(--max-width);
  margin: auto;
}

.project_heading-image .section__header {
  font-size: 3rem;
  font-weight: 800;
  color: #03060f;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top:  2rem;
}

.project_heading-image .project__image {
  padding-top: 2.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2.5rem;
}

.project_heading-image .project__image img {
  max-width: 100%;
  border-radius: 5px;
  border-color: #0f1221;
  border: .5px solid #04091d;
}

.project_heading-image .project__description {
  font-size: 1.5rem;
  color: #03060f;
  margin-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
  font-weight: 400;
}




.project_challenges {
  background-color: #abb8c3; /* Keep the existing background color */
  text-align: center;
  padding: 4rem 1rem; /* Consistent padding */
}

.project_challenges .project__container {
  max-width: var(--max-width);
  margin: auto;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.project_challenges .section__header_challenges {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  padding-bottom: 1rem;
  text-align: center; /* Center the heading */
}

.project_challenges hr {
  border: none;
  height: 2px;
  background-color: #03060f; /* Match the enhancement color */
  margin: 0 auto 2rem; /* Center the line */
  padding-left: 1rem;
  padding-right: 1rem;
}

.project_challenges .project__description_challenges {
  font-size: 1.63rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #04091d;
  padding: 1rem; /* Unified padding */
  text-align: justify; /* Ensure text justification */
  box-sizing: border-box; /* Include padding in width */
  word-spacing: normal; /* Reset word spacing */
  letter-spacing: normal; /* Reset letter spacing */
}

.project_challenges .project__details {
  margin-top: 2rem; /* Ensure consistent spacing */
}

.project_challenges .project__list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove left padding */
  margin: 0; /* Remove default margin */
}

.project_challenges .project__list-item {
  position: relative;
  border-bottom: 2px solid #03060f; /* Match the enhancement color */
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #0f1221;
  padding: 1rem 1.5rem; /* Unified padding */
  padding-left: 3rem; /* Additional padding for bullet */
  box-sizing: border-box; /* Include padding in width */
  width: 100%; /* Ensure list items use full width available */
  max-width: 100%; /* Ensure list items do not exceed container width */
}

.project_challenges .project__list-item::before {
  content: "\2022"; /* Unicode character for bullet point */
  font-size: 1.5rem; /* Size of the bullet */
  color: #03060f; /* Bullet color */
  position: absolute;
  left: 1rem; /* Position bullet to the left */
  top: 1rem; /* Align bullet vertically with the text */
}

.project_challenges .list-item__header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
  margin-bottom: 0.5rem;
  text-align: left; /* Align text to the left */
}

.project_challenges .list-item__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #0f1221;
  text-align: left; /* Align text to the left */
}

@media (max-width: 768px) {
  .project_challenges {
    padding: 3rem 1rem; /* Adjust padding for mobile */
  }

  .project_challenges .section__header_challenges {
    font-size: 2rem;
  }

  .project_challenges .project__description_challenges {
    font-size: 1.5rem;
  }

  .project_challenges .project__list-item {
    padding-left: 2rem; /* Adjust padding for smaller screens */
  }

  .project_challenges .project__list-item::before {
    left: 0.5rem;
  }

  .project_challenges .list-item__header {
    font-size: 1.4rem;
  }

  .project_challenges .list-item__description {
    font-size: 1.1rem;
  }
}

.project_solution {
  background-color: white;
  text-align: center;
  padding: 4rem 1rem; /* Consistent padding */
}

.project_solution .project__container {
  max-width: var(--max-width);
  margin: auto;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.project_solution .section__header_solution {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  padding-bottom: 1rem;
  text-align: center; /* Center the heading */
}

.project_solution hr {
  border: none;
  height: 2px;
  background-color: #03060f; /* Change to match enhancement color */
  margin: 0 auto 2rem; /* Center the line */
  padding-left: 1rem;
  padding-right: 1rem;
}

.project_solution .project__description_solution {
  font-size: 1.63rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #04091d;
  padding: 1rem; /* Unified padding */
  text-align: justify; /* Ensure text justification */
  box-sizing: border-box; /* Include padding in width */
  word-spacing: normal; /* Reset word spacing */
  letter-spacing: normal; /* Reset letter spacing */
}

.project_solution .project__details {
  margin-top: 2rem; /* Ensure consistent spacing */
}

.project_solution .project__list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove left padding */
  margin: 0; /* Remove default margin */
}

.project_solution .project__list-item {
  position: relative;
  border-bottom: 2px solid #03060f;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #0f1221;
  padding: 1rem 1.5rem; /* Unified padding */
  padding-left: 3rem; /* Additional padding for bullet */
  box-sizing: border-box; /* Include padding in width */
  width: 100%; /* Ensure list items use full width available */
  max-width: 100%; /* Ensure list items do not exceed container width */
}

.project_solution .project__list-item::before {
  content: "\2022"; /* Unicode character for bullet point */
  font-size: 1.5rem; /* Size of the bullet */
  color: #03060f; /* Bullet color */
  position: absolute;
  left: 1rem; /* Position bullet to the left */
  top: 1rem; /* Align bullet vertically with the text */
}

.project_solution .list-item__header {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
  margin-bottom: 0.5rem;
  text-align: left; /* Align text to the left */
}

.project_solution .list-item__description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #0f1221;
  text-align: left; /* Align text to the left */
}

@media (max-width: 768px) {
  .project_solution {
    padding: 3rem 1rem; /* Adjust padding for mobile */
  }

  .project_solution .section__header_solution {
    font-size: 2rem;
  }

  .project_solution .project__description_solution {
    font-size: 1.5rem;
  }

  .project_solution .project__list-item {
    padding-left: 2rem; /* Adjust padding for smaller screens */
  }

  .project_solution .project__list-item::before {
    left: 0.5rem;
  }

  .project_solution .list-item__header {
    font-size: 1.4rem;
  }

  .project_solution .list-item__description {
    font-size: 1.1rem;
  }
}


.project_datasource {
  background-color:#abb8c3;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.project_datasource .project__container {
  max-width: var(--max-width);
  margin: auto;
}

.project_datasource .section__header_datasource {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  padding-bottom: 1rem;
}

.project_datasource hr {
  margin-left: 1rem;
  margin-right: 1rem;
  border: none;
  height: 2px;
  background-color:#03060f;
  padding-left: 1rem;
  padding-right: 1rem;
}

.project_datasource .project__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.project_datasource .project__details {
  text-align: left;
}

.project_datasource .project__description {
  font-size: 1.63rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color:#04091d;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: justify;
  padding-top: 1rem;
}

.project_datasource .project__list {
  list-style-type: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.project_datasource .project__list-item {
  border-bottom: 2px solid #03060f;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 400;
  color: #0f1221;
  padding: 1rem;
  text-align: left;
}

.project_datasource .project__list-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
  text-align: justify;
}

.project_datasource .project__image img {
  max-width: 100%;
  border-radius: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .project_datasource .project__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .project_datasource .project__details {
    text-align: center;
  }
}


.project_customization {
  background-color: white;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.project_customization .project__container {
  max-width: var(--max-width);
  margin: auto;
  padding-left: 1rem; /* Ensure consistent padding inside container */
  padding-right: 1rem; /* Ensure consistent padding inside container */
  box-sizing: border-box; /* Include padding and border in width */
}

.project_customization .section__header_customization {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  padding-bottom: 1rem;
}

.project_customization hr {
  border: none;
  height: 2px;
  background-color: black;
  margin: 1rem; /* Unified margin for hr */
  padding: 0 1rem; /* Unified padding for hr */
}

.project_customization .project__description {
  font-size: 1.63rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #04091d;
  padding: 1rem; /* Unified padding */
  text-align: justify;
  box-sizing: border-box; /* Include padding in width */
}

.customization__list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove left padding */
  margin: 0; /* Remove default margin */
}

.customization__list li {
  position: relative;
  border-bottom: 2px solid #03060f;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #0f1221;
  padding: 1rem 1.5rem; /* Unified padding */
  padding-left: 3rem; /* Additional padding for bullet */
  box-sizing: border-box; /* Include padding in width */
  width: 100%; /* Ensure list items use full width available */
  max-width: 100%; /* Ensure list items do not exceed container width */
}

.customization__list li::before {
  content: "\2022"; /* Unicode character for bullet point */
  font-size: 1.5rem; /* Size of the bullet */
  color: #03060f; /* Bullet color */
  position: absolute;
  left: 1rem; /* Position bullet to the left */
  top: 1rem; /* Align bullet vertically with the text */
}

.customization__list h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
  text-align: left; /* Align text to the left */
}

.customization__list p {
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: left; /* Align text to the left */
}

@media (max-width: 768px) {
  .project_customization {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .project_customization .section__header_customization {
    font-size: 2rem;
  }

  .project_customization .project__description {
    font-size: 1.5rem;
  }

  .customization__list li {
    padding-left: 2rem; /* Adjust padding for smaller screens */
  }

  .customization__list li::before {
    left: 0.5rem;
  }

  .customization__list h3 {
    font-size: 1.4rem;
  }

  .customization__list p {
    font-size: 1.1rem;
  }
}


.project_enhancement {
  background-color: #abb8c3; /* Keep the same background color */
  text-align: center;
  padding: 4rem 1rem; /* Consistent padding */
}

.project_enhancement .project__container {
  max-width: var(--max-width);
  margin: auto;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.project_enhancement .section__header_enhancement {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  padding-bottom: 1rem;
  text-align: center; /* Center the heading */
}

.project_enhancement hr {
  border: none;
  height: 2px;
  background-color: #03060f;
  margin: 0 auto 2rem;
  padding: 0 1rem; /* Unified padding */
}

.project_enhancement .project__description {
  font-size: 1.63rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #04091d;
  padding: 1rem; /* Unified padding */
  text-align: justify;
  box-sizing: border-box; /* Include padding in width */
}

.enhancement__list {
  list-style-type: none; /* Remove default bullets */
  padding-left: 0; /* Remove left padding */
  margin: 0; /* Remove default margin */
}

.enhancement__list-item {
  position: relative;
  border-bottom: 2px solid #03060f;
  border-radius: 5px;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #0f1221;
  padding: 1rem 1.5rem; /* Unified padding */
  padding-left: 3rem; /* Additional padding for bullet */
  box-sizing: border-box; /* Include padding in width */
  width: 100%; /* Ensure list items use full width available */
  max-width: 100%; /* Ensure list items do not exceed container width */
}

.enhancement__list-item::before {
  content: "\2022"; /* Unicode character for bullet point */
  font-size: 1.5rem; /* Size of the bullet */
  color: #03060f; /* Bullet color */
  position: absolute;
  left: 1rem; /* Position bullet to the left */
  top: 1rem; /* Align bullet vertically with the text */
}

.enhancement__list-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
  margin-bottom: 0.5rem;
  text-align: left; /* Align text to the left */
}

.enhancement__list-item p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #0f1221;
  text-align: left; /* Align text to the left */
}

@media (max-width: 768px) {
  .project_enhancement {
    padding: 3rem 1rem; /* Adjust padding for mobile */
  }

  .project_enhancement .section__header_enhancement {
    font-size: 2rem;
  }

  .project_enhancement .project__description {
    font-size: 1.5rem;
  }

  .enhancement__list-item {
    padding-left: 2rem; /* Adjust padding for smaller screens */
  }

  .enhancement__list-item::before {
    left: 0.5rem;
  }

  .enhancement__list-item h3 {
    font-size: 1.4rem;
  }

  .enhancement__list-item p {
    font-size: 1.1rem;
  }
}





.footer {
  background-color: #f8f9fa; /* Light grey background */
  padding: 20px 0;
  text-align: center;
  position: relative;
  bottom: 0;
  width: 100%;
}

.footer__content p {
  margin: 0;
  font-size: 16px;
  color: #333; /* Darker text color */
}


.footer__container {
  display: grid;
  gap: 2rem;
}

.footer__col h5 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #03060f;
}


.footer__col p {
  margin-bottom: 1.5rem;
  color: #04091d;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center; /* Center the social icons */
}

.footer__socials a {
  margin-bottom: 1rem;
  padding: 3px 8px;
  font-size: 1.25rem;
  background-color: #abb8c3;
  border-radius: 100%;
  transition: 0.3s;
  color: #03060f;
}

.footer__socials a:hover {
  background-image: var(--white);
}

.footer__col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #03060f;
}

.footer__links a {
  display: block;
  margin-bottom: 1rem;
  color: #04091d;
}

.footer__links a:hover {
  color: #8d8daa;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.8rem;
  color: #0f1221;
  text-align: center;
}

@media (width > 480px) {
  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .project__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 1rem;
  }

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__form .input__row {
    flex-direction: row;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:first-child {
    grid-column: 1/3;
  }
}

@media (width > 768px) {
  .header__socials {
    display: flex;
  }

  nav {
    position: static;
  }

  .nav__bar {
    padding: 2rem 1rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .header__container {
    padding: 0 1rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
  }

  .header__content {
    padding-block: 5rem;
    text-align: left;
    grid-area: 1/1/2/2;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
  }

  .banner__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .project__header {
    flex-direction: row;
  }

  .project__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client__card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .banner__container {
    gap: 2rem;
  }

  .project__grid {
    gap: 2rem;
  }

  .service__grid {
    gap: 2rem;
  }

  .blog__grid {
    gap: 2rem;
  }
}