@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 110vh;
}

.hide {
  opacity: 0;
}

.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-title {
  position: relative;
  color: #005088;
  font-size: 2.2em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 60px;
}

/* header  */
header {
  z-index: 999;
  position: fixed;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s ease;
}

header.sticky {
  padding: 10px 200px;
  height: calc(2.5rem + 1rem);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header .brand {
  color: black;
  font-size: 1.8em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

header .brand:hover {
  color: #005088;
}

header .navigation {
  position: relative;
}

header .navigation a {
  color: black;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
}

header .navigation a:hover {
  color: #005088;
}

header.sticky .navigation a:hover {
  color: #000;
}

#open,
#close {
  display: none;
}

/* section  */

section {
  padding: 100px 200px;
}

.main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(assets/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.main .content {
  display: flex;
  width: 100%;
}

.left {
  padding: 40px;
}

.main .content .left {
  max-width: 800px;
}

.main .content .left h4 {
  font-size: 1.8em;
  font-weight: 300;
  letter-spacing: -1px;
  cursor: context-menu;
}

.main .content .left h2 {
  font-size: 4.5em;
  font-weight: 700;
  cursor: context-menu;
  margin-bottom: 15px;
}

.main .content .left h3 {
  font-size: 1.6em;
  font-weight: 400;
  cursor: context-menu;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #333;
}

/* Professional intro text */
.intro-text {
  font-size: 1.7em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* Hero actions - button and social links inline */
.hero-actions {
  display: flex;
  align-items: end;
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #005088;
  border-radius: 50%;
  color: #005088;
  font-size: 1.3em;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 80, 136, 0.1);
}

.social-btn:hover {
  background: #005088;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 80, 136, 0.3);
}

/* Modern gradient name styling */
.name-gradient {
  background: linear-gradient(135deg, #005088 0%, #00a8ff 50%, #ffb800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  position: relative;
  display: inline-block;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.title-highlight {
  color: #ffb800;
  font-weight: 600;
}

.right {
  padding: 30px;
}

.right img {
  width: 40vh;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  border-radius: 20px;
  transition: transform .5s ease;
}

.right img:hover {
  transform: translateY(-30px);
  transition: 0.5s ease;
}

/* media icons  */
.media-icons {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -80px;
}

.media-icons a {
  color: #000;
  font-size: 1em;
  margin: 10px 0;
}

.media-icons a i:hover {
  color: #235bf6;
}

/* button  */

.btn {
  color: #fff;
  background: #005088;
  font-size: 1em;
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 10px;
  margin-top: 30px;
  transition: 0.5s ease;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
}

.btn:hover {
  background: #ffb800;
  color: #005088;
}

/* about me  */

.about .content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.about .content .imgS {
  width: max-content;
  padding: 30px;
}

.about .content .imgS img {
  float: right;
  width: 43vh;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  border-radius: 20px;
}

.about .content .imgC {
  margin-top: 30px;
}

.about .content .imgC .content-title {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 20px;
}

.about .content .imgC .paragraph-text {
  font-size: 1.1em;
  line-height: 30px;
}

/* skills  */

.skills {
  background: #005088;
}

.skills .content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: 20px;
}

.skills .content .col-left {
  position: relative;
  width: 46%;
}

.skills .content .col-left .content-title {
  margin-bottom: 20px;
}

.btnS {
  background: #ffb800;
  color: #005088;
  font-size: 1em;
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  border-radius: 10px;
  margin-top: 30px;
  transition: 0.5s ease;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
}

.btnS:hover {
  color: #fff;
  background: #235bf6;
}

.skills .content .col-right {
  position: relative;
  width: 46%;
}

.skills .content .col-right .bar {
  margin-bottom: 15px;
  padding: 10px;
}

.skills .content .col-right .bar .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.skills .content .col-right .bar .info span {
  font-size: 18px;
  font-weight: 500;
}

.skills .content .col-right .bar .line {
  position: relative;
  width: 100%;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}

.skills .content .col-right .bar .line:before {
  content: '';
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2px;
}

.skills .content .col-right .bar .html:before {
  width: 90%;
  background: #d6522a;
}

.skills .content .col-right .bar .css:before {
  width: 85%;
  background: #29bac2;
}

.skills .content .col-right .bar .js:before {
  width: 70%;
  background: #30dd6d;
}

.skills .content .col-right .bar .php:before {
  width: 65%;
  background: #e3a324;
}

.skills .content .col-right .bar .csharp:before {
  width: 95%;
  background: #68217a;
}

.skills .content .col-right .bar .svelte:before {
  width: 85%;
  background: #ff3e00;
}

.skills .content .col-right .bar .sql:before {
  width: 90%;
  background: #cc2927;
}

.skills .content .col-right .bar .webdev:before {
  width: 88%;
  background: #30dd6d;
}

.skills .content .col-right .bar .api:before {
  width: 92%;
  background: #29bac2;
}

/* skills - new card layout */

.skills .content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: space-between;
  margin-top: 20px;
}

.skill-card {
  background: #fff;
  flex: 1;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
}

.skill-card-title {
  color: #005088;
  font-size: 1.8em;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #ffb800;
  padding-bottom: 15px;
}

.skill-category {
  margin-bottom: 20px;
}

.skill-category h4 {
  color: #005088;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
}

.skill-category p {
  color: #555;
  font-size: 1em;
  line-height: 1.6;
}

.soft-skill-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.soft-skill-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.soft-skill-item i {
  color: #ffb800;
  font-size: 1.3em;
  min-width: 20px;
}

.soft-skill-item span {
  color: #555;
  font-size: 1.05em;
  line-height: 1.6;
}

.title p {
  font-size: 1em;
  width: 80%;
}

/* work experience */

.experience {
  background: #f9f9f9;
}

.experience .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.experience-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-header {
  margin-bottom: 20px;
  border-left: 4px solid #005088;
  padding-left: 20px;
}

.experience-header h3 {
  color: #005088;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 8px;
}

.experience-header .company {
  display: block;
  color: #333;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 5px;
}

.experience-header .duration {
  display: block;
  color: #666;
  font-size: 0.95em;
  font-weight: 400;
}

.experience-list {
  list-style: none;
  padding-left: 0;
}

.experience-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #555;
}

.experience-list li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #ffb800;
  font-size: 1.2em;
  font-weight: bold;
}

/* projects */

.projects {
  background: #005088;
}

.projects .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.project-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-header {
  margin-bottom: 20px;
  border-left: 4px solid #ffb800;
  padding-left: 20px;
}

.project-header h3 {
  color: #005088;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-header .project-duration {
  display: block;
  color: #666;
  font-size: 0.95em;
  font-weight: 500;
}

.project-list {
  list-style: none;
  padding-left: 0;
}

.project-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #555;
}

.project-list li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #005088;
  font-size: 1.2em;
  font-weight: bold;
}

/* education */

.education {
  background: #f9f9f9;
}

.education .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.education .content-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 20px;
  justify-content: center;
}

.education-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: transform 0.3s ease;
  flex: 1;
  max-width: 500px;
}

.education-card:hover {
  transform: translateY(-5px);
}

.education-icon {
  color: #005088;
  font-size: 3em;
  min-width: 60px;
  display: flex;
  justify-content: center;
}

.education-info h3 {
  color: #005088;
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 5px;
}

.education-info h4 {
  color: #333;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 10px;
}

.education-info .institution {
  color: #666;
  font-size: 1em;
  margin-bottom: 5px;
}

.education-info .duration {
  color: #888;
  font-size: 0.95em;
  margin-bottom: 5px;
}

.education-info .grades {
  color: #ffb800;
  font-size: 0.95em;
  font-weight: 600;
}

/* certificates and languages combined */

.certlang {
  background: #005088;
  padding: 100px 200px;
}

.certlang .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: space-between;
}

.certlang-column {
  flex: 1;
}

.section-title-small {
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

/* certificates */

.certificates {
  background: #005088;
}

.certificates .content {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.certificates-list {
  max-width: 800px;
  width: 100%;
}

.certificate-item {
  background: #fff;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  transition: transform 0.3s ease;
}

.certificate-item:hover {
  transform: translateX(10px);
}

.certificate-item i {
  color: #ffb800;
  font-size: 2em;
  min-width: 40px;
}

.certificate-item span {
  color: #333;
  font-size: 1.1em;
  font-weight: 500;
}

/* languages */

.languages {
  background: #f9f9f9;
}

.languages .content {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.language-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.language-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(1 1 1 / 20%);
}

.language-card i {
  color: #005088;
  font-size: 2.5em;
  margin-bottom: 12px;
}

.language-card h3 {
  color: #333;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 6px;
}

.language-card p {
  color: #ffb800;
  font-size: 0.95em;
  font-weight: 500;
}

.title p {
  font-size: 1em;
  width: 80%;
}

/* languages - progress bars */

.languages-bars {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.language-bar {
  margin-bottom: 10px;
}

.language-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.language-info span:first-child {
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
}

.language-info span:last-child {
  color: #ffb800;
  font-size: 0.95em;
  font-weight: 500;
}

.language-progress {
  position: relative;
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.language-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, #ffb800, #ffd700);
  border-radius: 10px;
  transition: width 1s ease;
}

.language-fill.english {
  width: 95%;
}

.language-fill.hindi {
  width: 95%;
}

.language-fill.gujarati {
  width: 100%;
}

/* contact  */

.contact .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: 20px;
}

.contact .content .row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.contact .content .row .card {
  background: #fff;
  width: 280px;
  margin: 20px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
  border-radius: 10px;
}

.contact .content .row .card .contact-icon {
  color: #005088;
  font-size: 3em;
  text-align: center;
  transition: transform 0.5s ease;
}

.contact .content .row .card:hover .contact-icon {
  transform: translateY(-10px);
}

.contact .content .row .card.contact-card-link {
  text-decoration: none;
  color: inherit;
}

.contact .content .row .card.contact-card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(1 1 1 / 20%);
  border: 2px solid #005088;
}

.contact .content .row .card .info {
  text-align: center;
}

.contact .content .row .card .info h3 {
  color: #111;
  font-size: 1em;
  font-weight: 700;
  margin: 10px;
}

.contact .content .row .card .info span {
  color: #666;
  font-weight: 500;
}

.contact-form {
  background: #005088;
  width: 800px;
  margin-top: 50px;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
}

.contact-form h3 {
  color: #fff;
  font-size: 1.6em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.contact-form .text-box {
  position: relative;
  margin-bottom: 20px;
  background: #fff;
  width: 49.6%;
  border: none;
  height: 50px;
  padding: 12px;
  font-size: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-top: 18px;
  ;
}

.contact-form textarea {
  color: #111;
  background: #fff;
  width: 100%;
  height: 100px;
  padding: 12px;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  border-radius: 10px;
  min-height: 30px;
  max-height: 100px;
  resize: vertical;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.contact-form .send-btn {
  width: 100%;
  height: 40px;
  color: #005088;
  background: #ffb800;
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s ease;
}

.contact-form .send-btn:hover {
  color: #fff;
  background: #235bf6;
}

/* ----------------------------------------  */

@media (max-width: 1290px) {

  .section {
    padding: 0 100px;
  }

  .main .content .left h4 {
    font-size: 1.2em;
  }

  .main .content .left h2 {
    font-size: 3.2em;
  }

  .main .content .left h3 {
    font-size: 2em;
  }

  .media-icons i {
    font-size: 2em;
  }

}

/* -------------------------------------------- */

@media (max-width: 1050px) {
  header {
    padding: 12px 20px;
  }

  header.sticky {
    padding: 10px 20px;
  }

  header .navigation {
    z-index: 99999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
  }

  header .navigation.active {
    visibility: visible;
    opacity: 1;
  }

  header .navigation .nav-items {
    position: relative;
    background: #fff;
    width: 400px;
    max-width: 400px;
    display: grid;
    place-content: center;
    margin: 20px;
    padding: 40px;
    border-radius: 20px;
    transform: translateY(-200px);
    transition: 0.3s ease;
  }

  header .navigation.active .nav-items {
    transform: translateY(0);
  }

  header .navigation .nav-items a {
    font-size: 1em;
    margin: 15px 50px;
    transition: .3s ease;
  }

  #open {
    display: block;
    color: #000;
    font-size: 1.5em;
    cursor: pointer;
  }

  #close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.3em;
    margin: 20px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  section {
    padding: 0px 100px;
  }

  .section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }

  .social-links {
    margin-bottom: 30px;
  }

  .about .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  .about .content .imgS {
    position: relative;
    padding: 15px;
  }

  .about .content .imgC {
    margin-top: 40px;
  }

  .about .content .imgC .content-title {
    font-size: 1.5em;
  }

  .about .content .imgC .paragraph-text {
    font-size: 1em;
  }

  .btn {
    margin-bottom: 30px;
  }

  .skills .content {
    flex-direction: column;
  }

  .skills .content .column {
    position: relative;
    width: 100%;
  }

  .skills .content .col-right {
    margin-top: 40px;
  }

  .contact-form {
    padding: 35px 40px;
    margin-bottom: 50px;
    transition: .3 ease;
  }

  .experience-header h3 {
    font-size: 1.3em;
  }

  .project-header h3 {
    font-size: 1.2em;
  }

  .skills .content {
    flex-direction: column;
  }

  .certlang {
    padding: 80px 40px;
  }

  .certlang .content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

/* --------------------------------------------  */

@media (max-width: 892px) {

  .main {
    background: #fff;
  }

  .main .content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  .main .content .right img {
    width: 30vh;
  }

  .main .content .left h4 {
    font-size: 1.1em;
  }

  .main .content .left h2 {
    font-size: 2.4em;
  }

  .main .content .left h3 {
    font-size: 1.2em;
  }

  .media-icons i {
    font-size: 2em;
  }

  .about .content .imgS img {
    width: 35vh;
  }

  .contact .content .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-items: center;
  }

  .contact-form {
    width: 320px;
    margin-bottom: 50px;
  }

  .contact-form .text-box {
    width: 100%;
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }

  .end {
    padding: 0 20px;
  }

  .end h2 {
    font-size: 1.2em;
  }

  .experience-card,
  .project-card,
  .education-card {
    padding: 20px;
  }

  .education-card {
    flex-direction: column;
    text-align: center;
  }

  .education-icon {
    justify-content: center;
  }

  .languages-grid {
    grid-template-columns: 1fr;
  }

  .certificate-item {
    padding: 15px 20px;
  }

  .education .content-row {
    flex-direction: column;
    align-items: center;
  }

  .skill-card {
    padding: 25px;
  }

  .certlang {
    padding: 60px 20px;
  }

}

/* ---------------------------------------------  */

@media (max-width: 550px) {

  section {
    padding: 0 20px;
  }

  .left {
    padding: 0 40px;
  }

  .right {
    padding-bottom: 0;
  }

  .end h2 {
    font-size: 1em;
  }

  .media-icons {
    margin-left: -67px;
    top: 40%;
  }

  .experience-header h3,
  .project-header h3,
  .education-info h3 {
    font-size: 1.2em;
  }

  .experience-list li,
  .project-list li {
    font-size: 0.95em;
  }

}

.scrollToTop-btn {
  z-index: 999;
  position: fixed;
  background: #005088;
  color: #fff;
  width: 45px;
  height: 45px;
  right: 0;
  bottom: 10px;
  font-size: 22px;
  text-align: center;
  line-height: 45px;
  border-radius: 3px;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.scrollToTop-btn:hover {
  background: #ffb800;
  color: #005088;
}

.scrollToTop-btn.active {
  right: 20px;
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: all 1.5s ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

/* scrollbar  */
::-webkit-scrollbar {
  width: 15px;
  background-color: #005088;
}

::-webkit-scrollbar-thumb {
  width: 100%;
  background: #ffb800;
}

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