body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #3498db;
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 3px solid #0062cc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* Ensure padding does not overflow */
}

.header-left {
  display: flex;
  align-items: center;
  flex: 1;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

/* nav ul li {
  margin-right: 15px;
} */

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffe600;
}

/* End Header */

/*  Name and Title */

.header-center {
  position: relative;
  display: flex;
  flex-direction: column;
}

.header-center h1 {
  font-size: 3.5rem;
  margin: 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  color: #3498DB;
  font-style: italic;
  font-weight: 700;
}

.header-center p {
  margin: 0;
  font-size: 1.5rem;
  color: #3498DB;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
}

/*  END Name and Title */

.social-icons {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffe600;
}

/* Home Section */
.home-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
  min-height: 100vh;
  box-sizing: border-box;
  text-align: center;
}

.profile-image .img-block {
  width: 80%;
  margin: auto;
  height: 20rem;
  overflow: hidden;
  border-radius: 50%;
  border: 5px solid #3498db;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.download-buttons {
  margin-top: 20px;
}

.download-buttons a {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  background: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.download-buttons a:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.home-intro p {
  font-size: 1.25rem;
  line-height: 2;
  font-family: "Arial", sans-serif;
  color: #333;
  margin-bottom: 20px;
  justify-content: space-around;
  text-align: center;
}

.technology-icon {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #333;
}
.technology {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.technology-name {
  font-size: 1.25rem;
}

/* About Me Section */
/* Academic Section */
/* Work Experience Section */

/* Technologies Section */
.technologies-txt {
  font-size: 1rem;
  color: #cd6155;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Progress Bar */
.progress {
  position: relative;
  overflow: hidden;
  height: 28px;
  padding: 2px;
  border-radius: 20px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background-color: #5d6d7e; /* Darker background for contrast */
  display: flex;
  align-items: center;
}

.progress-bar-stripped {
  height: 100%;
  border-radius: 20px;
  background-color: #27ae60;
  background-image: linear-gradient(
    45deg,
    hsla(0, 0%, 95%, 0.8) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 0%, 95%, 0.8) 0,
    hsla(0, 0%, 95%, 0.8) 75%,
    transparent 0,
    transparent
  );
  background-size: 40px 40px;
  animation: wave 1s linear infinite;
}

.loading {
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
}

.spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 3px solid #27ae60;
  animation: spin 0.7s linear infinite;
}

/* Wave Animation */
@keyframes wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}

/* Spinner Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*   END Progress Bar  */



/*  Bullet List Work UI */
.responsibilities-list {
  list-style: none;
  padding: 0;
}

.responsibilities-list li {
  display: flex;
  align-items: center;
  padding: 8px;
  margin-bottom: 8px;
  font-size: 1 rem;
  color: #444;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
}

.responsibilities-list li i {
  margin-right: 10px;
  font-size: 1 rem;
  color: #27ae60;
  transition: transform 0.3s;
}

.responsibilities-list.hover li:hover {
  background-color: #e3f2fd;
  color: #1976d2;
}

.responsibilities-list.hover li:hover i {
  transform: scale(1.2);
  color: #1976d2;
}


/* End Bullet List UI */

/* Contact Section */

.section-contact {
  padding: 40px 0;
  background-color: #1b1f3b;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.thank-you-message p {
  text-align: justify;
  margin-bottom: 30px;
  color: #ffffff;
  /* Ensure text is white */
  font-size: 18px;
  line-height: 1.6;
}

.contact-info {
  text-align: center;
  margin-top: 20px;
}

.contact-info p {
  font-size: 18px;
  color: #ffffff;
  /* Ensure text is white */
  margin-bottom: 10px;
}

.contact-info a {
  color: #3498DB;

  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #0056b3;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: #ffffff;
  /* Ensure text is white */
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
}

/* End Contact Section */

/* New CSS */
.navbar[data-sticky="top"].scrolled.navbar-dark {
  background: #1b1f3b;
  border-bottom-color: transparent;
}

.navbar-toggler {
  border: none;
  position: relative;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.ptb-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.ptb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.ptb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.ptb-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ptb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.ptb-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.ptb-100 {
  padding-top: 100px;
}
