@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: 100%;
  border-radius: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header__content {
  text-align: center;
}

.header__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #04091d;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 600;
  line-height: 3.5rem;
  color: #03060f;
}

.header__content p {
  margin-bottom: 2rem;
  color: #0f1221;
}


.home_about {
  background-color: #abb8c3;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home_about .about__container {
  max-width: var(--max-width);
  margin: auto;
}

.home_about .about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.home_about .about__content {
  text-align: left;
}

.home_about .section__header_about {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.home_about .about__details {
  padding-left: 1rem;
  padding-right: 1rem;
}

.home_about .about__details p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #04091d;
}

.home_about .about__description {
  font-size: 1.63rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #04091d;
  padding-bottom: 1rem;
  text-align: justify;
}

.home_about .about__list {
  list-style-type: none;
  padding-left: 1rem;
  padding-right: 1rem;
}

.home_about .about__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;
  background-color: #d8d8d8;
}

.home_about .about__list-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
  text-align: justify;
}

.home_about .resume__btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #03060f;
  background-color: #d8d8d8;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: 1rem;
}

.home_about .resume__btn:hover {
  background-color: #D8D8D8;
}

.home_about .about__video {
  /* Container for the video */
  padding-left: 1rem;
  padding-right: 1rem;
}

.home_about .about__video video {
  max-width: 100%;
  border-radius: 10px;
  /* Optional: add additional styling if needed */
}

.home_about .resume__btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #03060f;
  background-color: #d8d8d8;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: 1rem;
}

.home_about .resume__btn:hover {
  background-color: #b0b0b0; /* Slightly darker background on hover */
}


@media (max-width: 768px) {
  .home_about .about__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home_about .about__content {
    text-align: center;
  }

  .home_about .about__details {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home_about .resume__btn {
    margin: 1rem auto;
  }
}



.home__education {
  background-color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.home__education .education__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  margin-bottom: 2rem;
}

.home__education .education__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.home__education .education__item {
  background-color: #D8D8D8;
  border-bottom: 2px solid #03060f;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home__education .education__item h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #04091d;
  margin-bottom: 0.5rem;
}

.home__education .education__item p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #0f1221;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .home__education {
    padding: 2rem 1rem;
  }

  .home__education .education__header {
    font-size: 2rem;
  }

  .home__education .education__item h3 {
    font-size: 1.5rem;
  }

  .home__education .education__item p {
    font-size: 1rem;
  }
}


.home__experience {
  background-color: #abb8c3;
  padding: 4rem 1rem;
  text-align: center;
}

.home__experience .experience__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  margin-bottom: 1rem;
}


.home__experience .experience__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home__experience .experience__item {
  background-color: #D8D8D8;
  border-bottom: 2px solid #03060f;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.home__experience .experience__item h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #03060f;
  margin-bottom: 0.5rem;
}

.home__experience .experience__item p {
  font-size: 1rem;
  color: #0f1221;
  margin: 0;
}

@media (max-width: 768px) {
  .home__experience .experience__item {
    width: 90%;
  }

  .home__experience .experience__header {
    font-size: 2rem;
  }

  .home__experience .experience__item h3 {
    font-size: 1.5rem;
  }

  .home__experience .experience__item p {
    font-size: 0.9rem;
  }
}


.banner__container {
  padding-block: 2rem;
  display: grid;
  gap: 1rem;
}

.banner__card {
  padding: 2rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--secondary-color-light);
  border-radius: 5px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.banner__card:hover {
  border-color: var(--primary-color-dark);
}

.banner__card span {
  padding: 4px 10px;
  font-size: 1.5rem;
  background-color: var(--secondary-color-dark);
  border-radius: 100%;
  transition: 0.3s;
}

.banner__card:hover span {
  color: var(--secondary-color);
  background-image: var(--gradient);
}

.banner__card h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
}

.banner__card p {
  color: var(--text-light);
}



.home_skills {
  background-color:white;
  padding: 4rem 0;
  text-align: center;
}

.home_skills .skills__container {
  max-width: var(--max-width);
  margin: auto;
}

.home_skills .section__header_skills {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  margin-bottom: 2rem;
}

.home_skills .skills__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill__circle {
  width: 150px;
  height: 150px;
  background: conic-gradient(#C0C0C0 calc(var(--percent) * 1%), #e6e6e6 0%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.skill__inner-circle {
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.skill__inner-circle img {
  width: 70%;
}

.skill__name {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #03060f;
}

.skill__circle[data-percent="60"] {
  --percent: 60;
}

.skill__circle[data-percent="85"] {
  --percent: 85;
}

.skill__circle[data-percent="80"] {
  --percent: 80;
}

.skill__circle[data-percent="70"] {
  --percent: 70;
}

.skill__circle[data-percent="50"] {
  --percent: 50;
}








.home__project {
  padding: 4rem 1rem;
  background-color: #abb8c3;
  width: 100%; /* Ensure full width */
}

.project__header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  max-width: 1200px; /* Set a max-width for the header container */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
}

.project__nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.project__btn {
  color: #03060f;
  background-color: transparent;
  border: none; /* Remove the border */
  border-radius: 5px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.project__btn:hover,
.project__btn:focus {
  background-color: #abb8c3;
  color: #abb8c3;
}

.mixitup-control-active {
  color: var(--white);
}


.project__grid-container {
  max-width: 1200px; /* Set a max-width for the grid container */
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.project__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.project__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: block; /* Initially shown for transition */
}

.project__card.show {
  opacity: 1;
  transform: scale(1);
}


.project__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project__card img {
  width: 100%;
  height: 200px; /* Set a fixed height for uniformity */
  object-fit: cover; /* Ensures the image fills the box without distortion */
  display: block;
  border-bottom: 2px solid var(--secondary-color);
}

.project__card h3 {
  text-align: center;
  padding: 1rem;
  color: #333;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .project__header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .project__nav {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .project__btn {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}



.swiper {
  margin-top: 4rem;
  padding-bottom: 4rem;
  width: 100%;
}

.swiper-slide {
  padding-block: 2rem;
  background-color: var(--secondary-color-light);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color-dark);
}



.blog {
  padding: 4rem 1rem;
  background-color: #f0f0f0;
}

.blog .section__container {
  max-width: var(--max-width);
  margin: auto;
}

.blog .section__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  text-align: center;
  margin-bottom: 2rem;
}

.blog__container {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;

  margin: 10px;
  display: grid;
  justify-content: center;
}

.blog__item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blog__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog__content {
  padding: 1rem;
}

.blog__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #03060f;
}

.blog__description {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .blog__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog__item {
    margin-bottom: 2rem;
  }
}







.contact__container {
  background-color: white;
  padding: 4rem 0;
  text-align: center;
}

.contact__container .section__subheader {
  font-size: 1.5rem;
  font-weight: 600;
  color: #04091d;
}

.contact__container .section__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: #03060f;
  margin: 1rem 0 2rem;
}

.form__container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px; /* Added padding for mobile responsiveness */
}

#mc_embed_signup {
  background: #fff;
  clear: left;
  font: 14px Helvetica, Arial, sans-serif;
  width: 100%;
}

.contact__container input[type="text"],
.contact__container input[type="email"],
.contact__container textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

.contact__container textarea {
  resize: vertical;
}

.contact__container .btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #03060f;
  background-color: #03060f;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact__container .btn:hover {
  background-color: #222;
}

@media (max-width: 600px) {
  .contact__container .section__subheader {
    font-size: 1.25rem;
  }

  .contact__container .section__header {
    font-size: 2rem;
  }

  .contact__container input[type="text"],
  .contact__container input[type="email"],
  .contact__container textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .contact__container .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}






.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;
  }
}




