/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  cursor: url(pointerCursor.svg) 1 1, auto;
}


body {
  cursor: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ff8000;
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff8000;
}

/* Navigation Styles */
nav {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: 'Ubuntu', sans-serif;
}

nav.sticky {
  background: #ff8000;
  padding: 13px 0;
}

nav .navbar {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  
}

nav .navbar .logo a {
  font-weight: 500;
  font-size: 35px;
  color: #ff8000;
}

nav.sticky .navbar .logo a {
  color: #fff;
}

nav .navbar .menu {
  display: flex;
  position: relative;
  
}

nav .navbar .menu li {
  list-style: none;
  margin: 0 8px;
  cursor: url(handCursor.svg) 12 12, auto;
}

.navbar .menu a {
  font-size: 18px;
  font-weight: 500;
  color: #0E2431;
  padding: 6px 0;
  transition: all 0.4s ease;
  cursor: url(handCursor.svg) 12 12, auto;
}

.navbar .menu a:hover {
  color: #ff8000;
  
}

nav.sticky .menu a {
  color: #fff;
}

nav.sticky .menu a:hover {
  color: #0E2431;
}

.navbar .media-icons a {
  color: #ff8000;
  font-size: 18px;
  margin: 0 6px;
  
}

nav.sticky .media-icons a {
  color: #fff;
  
}

/* Menu Button Styles */
nav .menu-btn,
.navbar .menu .cancel-btn {
  position: absolute;
  color: #fff;
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: url(handCursor.svg) 12 12, auto;
  transition: all 0.3s ease;
  display: none;
 
}

nav .menu-btn {
  color: #ff8000;
  
}

nav.sticky .menu-btn {
  color: #fff;
  
}

.navbar .menu .menu-btn {
  color: #fff;
  
}

/* Home Section Styles */
.home {
  height: 100vh;
  width: 100%;
  background: url("background.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: 40px;
  margin: 5px 0;
  color: #ff8000;
}

.home .text-four {
  font-size: 23px;
  margin: 5px 0;
  color: #0E2431;
}

.home .button {
  margin: 14px 0;
}

.home .button button {
  outline: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 25px;
  font-weight: 400;
  background: #ff8000;
  color: #fff;
  cursor: url(handCursor.svg) 12 12, auto;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.home .button button:hover {
  border-color: #ff8000;
  background-color: #fff;
  color: #ff8000;
}

/* Section Styles */
section {
  padding-top: 40px;
}

section .content {
  width: 80%;
  margin: 40px auto;
  font-family: 'Poppins', sans-serif;
}

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: #ff8000;
  left: 0;
  bottom: 0;
}

section .title span::after {
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

/* About Section Styles */
.about .about-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about .about-details .left {
  width: 45%;
}

.about .left img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.about-details .right {
  width: 55%;
}

.about-details .right p {
  text-align: justify;
  color: #0E2431;
}




.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-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: #1100ff;
}

.skills-details .boxes .per {
  font-size: 60px;
  color: #ff8000;
}


.achievement {
  padding: 50px 0;
  
}

.achievement .content {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.achievement .title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.achievement .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.achievement .box {
  background-color: #ff8000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin: 15px;
  flex-basis: calc(33.333% - 40px);
  max-width: calc(33.333% - 40px);
  box-sizing: border-box;
  border: 1px solid black;
  
}

.achievement .boxes :hover{
  background-color: #ffffff;
  cursor: url(handCursor.svg) 12 12, auto;
  transition: all 0.1s ease;
}

.achievement .box .icon {
  text-align: center;
  margin-bottom: 20px;
}

.achievement .box .icon i,
.achievement .box .icon svg {
  font-size: 36px;
  color: #333;
}

.achievement .box .topic {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
  
}

.achievement .box p {
  font-size: 18px;
  margin: 10px 0;
  
}

.certdetails
{
  align-items: center;
  margin-left: 200px;
  
}

.certificationdetails {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.certification {
  text-align: center;
}

.certification img {
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.certification button {
  margin-top: 15px;
  width: 75%;
  outline: none;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 25px;
  font-weight: 400;
  background: #ff8000;
  color: #fff;
  cursor: url(handCursor.svg) 12 12, auto;
  border: 2px solid black;
  transition: all 0.4s ease;
}

.certification2 button :hover
{
  border-color: #ff8000;
  background-color: #fff;
  color: #ff8000;
}

.certification2 button {
  margin-top: 20px;
  display: block;
  width: 30%;
  outline: none;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 25px;
  font-weight: 400;
  background: #ff8000;
  color: #fff;
  cursor: url(handCursor.svg) 12 12, auto;
  border: 2px solid black;
  transition: all 0.4s ease;
}

.certification2 button :hover {
  
  background: #ffffff;
  color: #000000;

}

.certifications
{
  justify-items: center;
  justify-content: space-between;
  cursor: url(handCursor.svg) 12 12, auto;
}

.achievement {
  text-align: center;
  
}


.slideshow-wrapper {
  display: flex;
  justify-content: center;
  gap: 70px; 
}

.slideshow-container {
  max-width: 400px; 
  width: 100%; 
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.15);
}


img {
  vertical-align: middle;
  width: 450px;
  border-radius: 15px;
  
}

.slideshow-container3 img
{
  vertical-align: middle;
  width: 450px;
  border-radius: 15px;
  border: 2px solid black;
}

.slideshow-container2 img
{
  vertical-align: middle;
  width: 450px;
  border-radius: 15px;
  border: 2px solid black;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}


.contact {
  
  align-content: center;
  
}
.contact-details {
  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; 
  
}

.contact .content {
  margin: 0 auto;
  padding: 30px 0;
  align-items: center;
  
}

.contact .text {
  width: 80%;
  text-align: center;
  margin: auto;
  
}


footer {
  background: hsl(18, 89%, 60%);
  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;
  cursor: url(handCursor.svg) 12 12, auto;
}

/* Scroll to Top Button Styles */
.scroll-button a {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  background: #ff8000;
  padding: 7px 12px;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none;
  cursor: url(handCursor.svg) 12 12, auto;
}

/* Responsive Media Queries */
@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;
  }
  .Achievement .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: #0E2431;
    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: 20px 0;
  }
  nav.sticky .menu a:hover {
    color: #4070f4;
  }
  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%;
  }
  .Achievement .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: #4070f4;
  }
}
