/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #3e0547;
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #3e0547;
}

/* navbar styling */
nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: 'Ubuntu', sans-serif;
}

nav.sticky {
  background: #3e0547;
  padding: 13px 0;
}

nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.navbarlogo {
  width: 100px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 10px; /* Space between logo and text */
}

nav .navbar .logo a {
  font-weight: 500;
  font-size: 35px;
  color: #3e0547;
}

.navbar-logo {
  width: 200px; /* Adjust size as needed */
  height: auto;
}

/* nav.sticky .navbar .logo a {
  color: #fff;
} */

nav .navbar .menu {
  display: flex;
  position: relative;
}

nav .navbar .menu li {
  list-style: none;
  margin: 0 20px;
}

.navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: #0E2431;
  padding: 6px 0;
  transition: all 0.4s ease;
}

.navbar .menu a:hover {
  color: #3e0547;
}

nav.sticky .menu a {
  color: #FFF;
}

nav.sticky .menu a:hover {
  color: #0E2431;
}

.navbar .media-icons a {
  color: #3e0547;
  font-size: 18px;
  margin: 0 6px;
}

nav.sticky .media-icons a {
  color: #FFF;
}

/* Side Navigation Menu Button CSS */
nav .menu-btn,
.navbar .menu .cancel-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}

nav .menu-btn {
  color: #3e0547;
}

nav.sticky .menu-btn {
  color: #FFF;
}

.navbar .menu .menu-btn {
  color: #fff;
}

/* home section styling */
.home {
  height: 100vh;
  width: 100%;
  background: url("images/bgupper.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: 'Ubuntu', sans-serif;
}

.home .home-content {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home .text-one {
  font-size: 25px;
  color: #0E2431;
}

.home .text-two {
  color: #0E2431;
  font-size: 75px;
  font-weight: 600;
  margin-left: -3px;
}

.home .text-three {
  font-size: 50px;
  margin: 5px 0;
  color: #3e0547;
  padding-bottom: 20px; 
  font-weight: bold;
}

.home .text-four {
  font-size: 23px;
  margin: 5px 0;
  color: #0E2431;
  padding-bottom: 20px; 
}

.home .button {
  margin: 14px 0;
}
.button-group {
  display: flex;
  gap: 10px; /* Space between buttons */
}

.home .button button {
  outline: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 25px;
  font-weight: 400;
  background: #3e0547;
  color: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.home .button button:hover {
  border-color: #3e0547;
  background-color: #fff;
  color: #3e0547;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 50px 10%;
  background-color: #f9f9f9;
}

.why-choose-us .content {
  max-width: 1200px;
  margin: auto;
}

.why-choose-us-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.why-choose-us .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-choose-us .left {
  flex: 1;
}

.why-choose-us .left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.why-choose-us .box {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-bottom: 15px;
}

.why-choose-us .box:hover {
  transform: scale(1.05);
}

.why-choose-us .icon {
  font-size: 24px;
  color: #070b0f;
  margin-right: 15px;
}

.why-choose-us .topic {
  font-size: 18px;
  font-weight: bold;
}

.why-choose-us .box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
}


/* Working Process Section */
.working-process {
  background-color: #3e0547;  /* Updated background color */
  padding: 60px 0;
}

.working-process .content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.working-process .title span {
  font-size: 32px;
  font-weight: bold;
  color: #fff; 
  text-transform: uppercase;
  letter-spacing: 2px;
}

.working-process .process-steps {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  flex-wrap: wrap;
}

.working-process .processshape {
  background-color: #fff;
  padding: 30px;
  width: 22%;
  margin: 15px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.working-process .processshape:hover {
  transform: scale(1.05);
}

.working-process .processshape .icon {
  font-size: 40px;
  color: #3e0547;
  margin-bottom: 15px;
}

.working-process .processshape .topic {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.working-process .processshape p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .working-process .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .working-process .processshape {
    width: 80%;
    margin: 20px 0;
  }
}




.features {
  padding: 60px 10%;
  background-color: #f9f9f9;
}

.features .content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.features-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.features .left {
  flex: 1;
}

.features .left img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.features .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.features .text h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.features .text p {
  font-size: 16px;
  color: #555;
}

.features .arrow {
  font-size: 40px;
  color: #3e0547;
}

.features .features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.features .feature-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: bold;
  color: #333;
  transition: transform 0.3s ease;
}

.features .feature-item:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-details {
    flex-direction: column;
    align-items: center;
  }

  .features .left,
  .features .right {
    width: 100%;
  }

  .features .arrow {
    margin-top: 20px;
  }
}




/* About Section Styling */

section {
  padding-top: 40px;
}

section .content {
  width: 80%;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}

.about .about-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

section .title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

section .title span {
  color: #0E2431;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

section .title span::before,
section .title span::after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: #3e0547;
  left: 0;
  bottom: 0;
}

section .title span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

.about .about-details .left {
  width: 45%;
}

.about .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-details .right {
  width: 55%;
}

section .topic {
  color: #0E2431;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-details .right p {
  text-align: justify;
  color: #0E2431;
}

section .button {
  margin: 16px 0;
}

section .button button {
  outline: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background: #3e0547;
  color: #fff;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
}

section .button button:hover {
  border-color: #3e0547;
  background-color: #fff;
  color: #3e0547;
}

/* My Skills CSS */
.skills {
  background: #F0F8FF;
}

.skills .content {
  padding: 40px 0;
}

.skills .skills-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skills-details .text {
  width: 50%;
}

.skills-details p {
  color: #0E2431;
  text-align: justify;
}

.skills .skills-details .experience {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.skills-details .experience .num {
  color: #0E2431;
  font-size: 80px;
}

.skills-details .experience .exp {
  color: #0E2431;
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 6px;
}

.skills-details .boxes {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.skills-details .box {
  width: calc(100% / 2 - 20px);
  margin: 20px 0;
}

.skills-details .boxes .topic {
  font-size: 20px;
  color: #3e0547;
}

.skills-details .boxes .per {
  font-size: 60px;
  color: #3e0547;
}

/* My Services CSS */
.services .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.services .boxes .box {
  margin: 20px 0;
  width: calc(100% / 3 - 20px);
  text-align: center;
  border-radius: 12px;
  padding: 30px 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  cursor: default;
  transition: all 0.4s ease;
}

.services .boxes .box:hover {
  background: #3e0547;
  color: #fff;
}

.services .boxes .box .icon {
  height: 50px;
  width: 50px;
  background: #3e0547;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  margin: 0 auto 10px auto;
  transition: all 0.4s ease;
}

.boxes .box:hover .icon {
  background-color: #fff;
  color: #3e0547;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
  color: #0E2431;
  transition: all 0.4s ease;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
  color: #fff;
}

/* Contact Me CSS */
.contact {
  background: #F0F8FF;
}

.contact .content {
  margin: 0 auto;
  padding: 30px 0;
}

.contact .text {
  width: 80%;
  text-align: center;
  margin: auto;
}

.contact-us {
  padding: 60px 10%;
  background-color: #f9f9f9;
}

.contact-us .content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-us .left {
  flex: 1;
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-us .left form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-us .form-group label {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.contact-us .form-group input,
.contact-us .form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.contact-us .form-group textarea {
  resize: vertical;
}

.contact-us .submit-btn {
  background-color: #3e0547;
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-us .submit-btn:hover {
  background-color: #3e0547;
}

.contact-us .right {
  flex: 1;
}

.contact-us .right img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-us .left,
  .contact-us .right {
    width: 100%;
  }

  .contact-us .left {
    margin-bottom: 30px;
  }
}


/* Footer CSS */
/* footer {
  background: #3e0547;
  padding: 15px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

footer .text span {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

footer .text span a {
  font-weight: 500;
  color: #FFF;
}

footer .text span a:hover {
  text-decoration: underline;
} */

/* Scroll TO Top Button CSS */
.scroll-button a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #3e0547;
  padding: 7px 12px;
  ;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none;
}

/* Fotter */
.footer {
  padding: 50px 10%;
  background-color: #3e0547;
  color: #fff;
}

.footer .content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-description,
.footer-services,
.footer-contact {
  flex: 1;
}

.footer-description {
  padding-right: 20px;
}

.footer-description p {
  font-size: 16px;
  color: #ccc;
}

.footer-services {
  padding-left: 20px;
}
.footer-description {
  text-align: center; /* Center the logo and text */
  max-width: 500px;
  margin: 0 auto; /* Center the content */
}

.footer-logo {
  width: 200px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 10px; /* Space between logo and text */
}

.footer-services h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services ul li {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-contact {
  padding-left: 20px;
}

.footer-contact h4 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact .contact-item i {
  font-size: 20px;
  color: #ccc;
}

.footer-contact p {
  font-size: 16px;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer .content {
    flex-direction: column;
    text-align: center;
  }

  .footer-description,
  .footer-services,
  .footer-contact {
    width: 100%;
    margin-bottom: 20px;
  }
}


/* Responsive Media Query */
@media (max-width: 1190px) {
  section .content {
    width: 85%;
  }
}

@media (max-width: 1000px) {
  .about .about-details {
    justify-content: center;
    flex-direction: column;
  }

  .about .about-details .left {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .about-details .right {
    width: 90%;
    margin: 40px 0;
  }

  .services .boxes .box {
    margin: 20px 0;
    width: calc(100% / 2 - 20px);
  }
}

@media (max-width: 900px) {
  .about .left img {
    height: 350px;
    width: 350px;
  }
}

@media (max-width: 750px) {
  nav .navbar {
    width: 90%;
  }

  nav .navbar .menu {
    position: fixed;
    left: -100%;
    top: 0;
    background: #3e0547;
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
  }

  .navbar.active .menu {
    left: 0;
  }

  nav .navbar .menu a {
    font-size: 23px;
    display: block;
    color: #fff;
    margin: 15px 0;
  }

  nav.sticky .menu a:hover {
    color: #3e0547;
  }

  nav .navbar .media-icons {
    display: none;
  }

  nav .menu-btn,
  .navbar .menu .cancel-btn {
    display: block;
  }

  .home .text-two {
    font-size: 65px;
  }

  .home .text-three {
    font-size: 35px;
  }

  .skills .skills-details {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .skills-details .text {
    width: 100%;
    margin-bottom: 50px;
  }

  .skills-details .boxes {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .services .boxes .box {
    margin: 20px 0;
    width: 100%;
  }

  .contact .text {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .home .text-two {
    font-size: 55px;
  }

  .home .text-three {
    font-size: 33px;
  }

  .skills-details .boxes .per {
    font-size: 50px;
    color: #3e0547;
  }
}