body {
  font-family: 'Roboto', sans-serif;
  color: #000000;
  background: #ffffff;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

a {
  color: #003366;
}

a:hover {
  text-decoration: underline;
  color: #003366;

}

a:focus {
  text-decoration: none;
}

p {
  font-family: 'Inter', sans-serif; /* Clean and modern font */
  font-size: 13px; /* Slightly larger for better readability */
  line-height: 1.5; /* Improved spacing for a cleaner look */
  color: #000000; /* Slightly darker for better contrast */
  letter-spacing: 0.2px; /* Subtle spacing for elegance */
  word-spacing: 0.4px; /* Helps with readability */
  text-rendering: optimizeLegibility; /* Smooth text rendering */
  margin-bottom: 1rem; /* Consistent spacing between paragraphs */
  text-align: justify; /* Justified text alignment */
  font-weight: 500;
}


.wrapper {
  max-width: 1040px;
  margin: 0 auto;
  margin-top: 0px;
  position: relative;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
  box-shadow: px 8px 16px rgba(0, 0, 0, 0.1);
}
.sidebar-wrapper {
  background: linear-gradient(
    to bottom, 
    #8db600,   /* Apple Green */
    #a1caf1,   /* Baby Blue */
    #e7feff,   /* Light Cyan */
    #a3c1ad,   /* Light Green */
    #ffff99,   /* Soft Pastel Yellow */
    #483c32    /* Taupe (Dark) */
  );
  position: absolute;
  right: 0;
  width: 280px;
  height: 100%;
  color: #000000;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
  border-left: 3px solid rgba(0, 0, 0, 0.1);  /* Subtle border for better separation */
  padding: 20px;
}

/* Link styles */
.sidebar-wrapper a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}


/* Profile Container */
.sidebar-wrapper .profile-container {
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #000000;
  border-radius: 10px; /* Smooth rounded edges */
}

/* Name Styling */
.sidebar-wrapper .name {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 10px 0;
}

/* Tagline */
.sidebar-wrapper .tagline {
  color: rgba(3, 3, 3, 0.7);
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

/* Contact List */
.sidebar-wrapper .contact-list {
  padding-left: 0;
}

.sidebar-wrapper .contact-list li {
  margin-bottom: 15px;
  list-style: none;
  display: flex;
  align-items: center;
}

.sidebar-wrapper .contact-list .svg-inline--fa {
  margin-right: 8px;
  font-size: 18px;
}

/* Section Blocks */
.sidebar-wrapper .container-block {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Section Titles */
.sidebar-wrapper .container-block-title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
  letter-spacing: 1px;
}

/* Degree & Education */
.sidebar-wrapper .degree {
  font-size: 14px;
  margin: 0 0 5px 0;
}

.sidebar-wrapper .education-container .item {
  margin-bottom: 15px;
}

.sidebar-wrapper .education-container .meta,
.sidebar-wrapper .education-container .time{
  color: #003366;
  font-weight: 500;
  font-size: 14px;
}

/* Lists (Languages & Interests) */
.sidebar-wrapper .interests-list {
  margin-bottom: 0;
  padding-left: 0;
}

.sidebar-wrapper .interests-list li {
  margin-bottom: 10px;
  list-style: none;
}

/* Last list items should not have extra margin */
.sidebar-wrapper .interests-list li:last-child {
  margin-bottom: 0;
}

.main-wrapper {
  background: #ffffff;
  padding: 60px;
  padding-right: 300px;
}

.main-wrapper .section-title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  color: #003366;
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
}

.main-wrapper .section-title .icon-holder {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  display: inline-block;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #003366;
  text-align: center;
  font-size: 16px;
  position: relative;
  top: -8px;
}

.main-wrapper .section-title .icon-holder .svg-inline--fa {
  font-size: 14px;
  margin-top: 6px;
}

.main-wrapper .section {
  margin-bottom: 60px;
}

.main-wrapper .experiences-section .item {
  margin-bottom: 30px;
}

.main-wrapper .upper-row {
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}

.main-wrapper .job-title {
  color: #3F4650;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.main-wrapper .time {
  position: absolute;
  right: 0;
  top: 0;
  color: #003366;
}

.main-wrapper .company {
  margin-bottom: 10px;
  color: #003366;

}

.main-wrapper .project-title {
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 5px;
}

.main-wrapper .projects-section .intro {
  margin-bottom: 30px;
}

.main-wrapper .projects-section .item {
  margin-bottom: 15px;
}

.footer {
  padding: 30px;
  padding-top: 60px;
}

.footer .copyright {
  line-height: 1.6;
  color: #000000;
  font-size: 13px;
}


@media (max-width: 767.98px) {
  .sidebar-wrapper {
    position: static; /* Makes sidebar part of the flow */
    width: 100%; /* Full width for mobile screens */
    height: auto; /* Allow natural height */
    min-height: unset; /* Remove min-height restriction */
    padding: 20px; /* Add some padding */
    border-left: none; /* Remove the side border */
    box-shadow: none; /* Remove shadow for a flat mobile look */
  }
  .main-wrapper {
    padding: 30px;
  }
  .main-wrapper .time {
    position: static;
    display: block;
    margin-top: 5px;
  }
  .main-wrapper .upper-row {
    margin-bottom: 0;
  }
}
