/**
* Template Name: MyResume - v4.9.2
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-my-resume/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
  /*--------------------------------------------------------------
# Header - Updated for Horizontal Layout
--------------------------------------------------------------*/
/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; /* Full-width top bar */
  height: 70px; /* Height for the header */
  z-index: 9997;
  transition: none; /* No animation */
  padding: 0 15px; /* Horizontal padding */
  background: #fff; /* Background color */
  display: flex; /* Horizontal layout */
  align-items: center; /* Center items vertically */
  justify-content: flex-end; /* Align items to the right */
}

.nav-menu {
  display: flex; /* Horizontal layout for navigation items */
  padding: 0; /* No padding around nav menu */
}

.nav-menu ul {
  display: flex; /* Flex layout for list */
  padding: 0; /* No padding */
  margin: 0; /* No margin */
  list-style: none; /* Remove default list styling */
}

.nav-menu li {
  margin: 0 5px; /* Reduce horizontal margin between items */
}

.nav-menu li:not(:last-child):after {
  content: "|"; /* Add separator after each item except the last */
  margin-left: 5px; /* Space between item and separator */
  color: #45505b; /* Color for the separator */
}

.nav-menu a {
  color: #45505b; /* Link color */
  text-decoration: none; /* Remove underline */
  padding: 10px; /* Padding around links */
}

/*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.png") top right no-repeat;
  background-size: cover;
  background-position: center right;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px; /* Space between profile and social links */
}

.profile-photo {
  width: 450px; /* Updated width */
  height: 450px; /* Updated height */
  border-radius: 50%;
  /* border: 2px solid #45505b; Border color */
  margin-right: 20px; /* Space between image and text */
}

.text-content {
  display: flex;
  flex-direction: column; /* Stack text vertically */
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 56px;
  color: #45505b;
}

#hero p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
  margin-left: 7px;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #0563bb;
}

/* Rest of your existing CSS remains the same */

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  # About
  --------------------------------------------------------------*/
.about {
  padding: 60px 20px; /* Added horizontal padding for responsiveness */
}

.about .section-title {
  text-align: center; /* Center the title text */
  padding-bottom: 30px; /* Space below the title */
}

.about .row {
  display: flex;
  align-items: center; /* Vertically center the image and text */
  justify-content: center; /* Center horizontally */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.about .row img {
  width: 20%; /* Size of the bullet image */
  margin-right: 15px; /* Space between the image and text */
  flex-shrink: 0; /* Prevent image from shrinking */
}

.about .row p {
  width: 70%; /* Width of the paragraph text */
  margin: 0; /* Remove default margins */
  text-align: justify; /* Justified text alignment */
}

.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
  text-align: center; /* Center the heading text */
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #0563bb;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Facts
  --------------------------------------------------------------*/
.facts {
  padding: 60px 20px; /* Responsive padding */
  text-align: center; /* Center content */
}

.facts .section-title h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  color: #45505b;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.facts .row {
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
  margin: 0 auto;
}

.facts img {
  height: 200px; /* Fixed height for image */
  max-width: 100%; /* Responsive width */
  margin: 20px 0; /* Space around image */
}

.facts .count-box {
  padding: 30px 30px 25px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #05afbb;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.facts .count-box span {
  font-size: 36px;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  margin: 0;
}

/*--------------------------------------------------------------
  # skills
  --------------------------------------------------------------*/
/* General styling for the skills section */
.skills {
  padding-bottom: 20px; /* Adds a bit more space at the bottom */
}

/* Wrapper for flex layout */
.skills-content-wrapper {
  display: flex;
  gap: 20px; /* Slightly increased gap between columns */
  flex-wrap: wrap;
  justify-content: center;
}

/* Each column takes half width */
.column {
  flex: 1 1 45%; /* Each column takes about half the container width */
  max-width: 45%;
}

/* Progress bar container styling */
.skills .progress {
  height: 50px; /* Slightly increased height */
  display: block;
  background: none;
  border-radius: 0;
  margin-bottom: 20px; /* Adds a bit more space between progress bars */
}

/* Skill name and percentage value */
.skills .progress .skill {
  padding: 10px 0; /* Slightly increased padding */
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
  font-size: 16px; /* Slightly increased font size */
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  font-size: 14px; /* Slightly increased font size */
}

/* Background of the progress bar container */
.skills .progress-bar-wrap {
  background: #f2f3f5;
  height: 12px; /* Increased height for progress bar container */
  border-radius: 5px; /* Adds a rounded edge */
}

/* Progress bar fill */
.skills .progress-bar {
  width: 1px; /* Starting width */
  height: 12px; /* Increased height */
  transition: width 0.9s; /* Smooth width transition */
  background-color: #05bb5a; /* Color of the bar */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .skills-content-wrapper {
      flex-direction: column;
  }
  .column {
      max-width: 100%;
  }
}

/*--------------------------------------------------------------
  # Resume
  --------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

.resume {
  padding-bottom: 0px;
}
/*--------------------------------------------------------------
  # Certificate
  --------------------------------------------------------------*/
/* Certificate Section Styling */
.certificates-section {
  text-align: center;
  padding: 50px 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
}

.certificates-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.certificate-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.certificate-box .icon img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.certificate-box h4 {
  margin: 15px 0;
  font-size: 18px;
}

.certificate-box p {
  font-size: 14px;
  color: #666;
}

.learn-more {
  color: #0563bb;
  text-decoration: none;
  font-weight: bold;
}


/*--------------------------------------------------------------
  # Services
  --------------------------------------------------------------*/
/* Projects Section */
.projects-section {
  text-align: center;
  padding: 50px 0;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
}

.projects-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.project-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.project-box .icon img {
  width: 60px;
  height: 60px;
}

.project-box h4 {
  margin: 15px 0;
  font-size: 18px;
}

.project-box p {
  font-size: 14px;
  color: #666;
}

.learn-more {
  color: #0563bb;
  text-decoration: none;
  font-weight: bold;
}


/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  .contact .info {
    width: 100%;
    background: #fff;
  }
  
  .contact .info i {
    font-size: 20px;
    color: #0563bb;
    float: left;
    width: 44px;
    height: 44px;
    background: #eef7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #45505b;
  }
  
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #728394;
  }
  
  .contact .info .email,
  .contact .info .phone,
  .contact .info .location {
    margin-top: 40px;
  }
  
  .contact .info .email:hover i,
  .contact .info .address:hover i,
  .contact .info .phone:hover i {
    background: #0563bb;
    color: #fff;
  }
  
  .contact .row {
    display: flex;
    justify-content: center; /* Center items horizontally */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    padding: 20px; /* Add padding around the row */
  }
  
  .download-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #1d66a6;
    color: #ffffff;
    border-radius: 30px;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 10px; /* Space between text and button */
  }
  
  .download-button:hover {
    background-color: #d8dfe6;
  }
  
/*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0563bb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0678e3;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
}

#footer .credits {
  font-size: 13px;
}

/*--------------------------------------------------------------
  # PyHRM Section
  --------------------------------------------------------------*/

.back-video {
  width: 700px;
  height: 500px;
}

#Pyhero {
  /* width: 100%; */
  height: 100vh;
  /* background-size: cover; */
  /* background-position:right; */
  position: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  #Pyhero {
    background-size: contain;
    background-position: center top;
  }
}

#Pyhero:before {
  content: "";
  background: rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#Pyhero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 56px;
  color: #45505b;
  padding-left: 600px;
  /* align-self: auto; */
}

#Pyhero p {
  padding-left: 600px;
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#Pyhero p span {
  color: #0563bb;
  letter-spacing: 1px;
}

#Pyhero .social-links {
  padding-left: 600px;
  margin-top: 30px;
}

#Pyhero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#Pyhero .social-links a:hover {
  color: #0563bb;
}

@media (max-width: 768px) {
  #Pyhero {
    text-align: center;
  }

  #Pyhero h1 {
    font-size: 32px;
    line-height: 36px;
    padding-left: 0%;
  }

  #Pyhero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
    padding-left: 0%;
  }

  #Pyhero .social-links {
    padding-left: 0%;
    margin-top: 30px;
  }

  #Pyhero .social-links a {
    font-size: 24px;
    display: inline-block;
    color: #45505b;
    line-height: 1;
    margin-right: 20px;
    transition: 0.3s;
  }

  #Pyhero .social-links a:hover {
    color: #0563bb;
  }
}

/*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
.clients {
  padding: 40px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.1s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
