/* Applying Google font over the website */
body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
  }
  
  /* Styling menu icon */
  .nav-menu {
    border: none;
    background-color: #f8f3ed;
    font-size: 1.75rem;
    color: #0c3b2e;
  }
  
  /* Styling navbar links */
  .navbar-nav a {
    color: #0c3b2e;
    position: relative;
  }
  
  .navbar-nav a:hover {
    color: #bb8a52;
  }
  
  .navbar-nav a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    top: 35px;
    position: absolute;
    background: #bb8a52;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  
  .navbar-nav a:hover:after {
    width: 100%;
    left: 0;
  }
  
  /* Styling contact button */
  .c-btn {
    border: none;
    background: #bb8a52;
    color: #fff;
    font-size: 1rem;
  }
  
  /* Styling home section */
  .home {
    background: linear-gradient(0deg, rgba(241, 231, 220, 1) 0%, rgba(248, 243, 237, 1) 100%);
    padding: 30px 0px 10px 0px;
  }
  
  .home h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  
  .c-hero {
    color: #0c3b2e;
    font-weight: 700;
    font-size: 4rem;
  }
  
  .home p {
    width: fit-content;
    margin-top: 1rem;
    font-size: 1.2rem;
  }
  
  .h-btn:hover {
    background: #bb8a52;
    color: #fff;
    transform: translateY(-10px);
    transition-duration: 1s;
  }
  
  .link {
    text-decoration: none;
    font-size: 1.15rem;
    color: #bb8a52;
    position: relative;
  }
  
  .link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    top: 21px;
    background-color: #6d9773;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  .link:hover {
    color: #6d9773;
  }
  
  .link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  /* Adding animation to home section image */
  .home img {
    animation: floatimg 5s ease-in-out infinite;
  }
  
  @keyframes floatimg {
    0% {
      transform: translateX(0);
    }
  
    50% {
      transform: translateX(-10px);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  .w-60 {
    width: 60% !important;
    border: 1px solid #0c3b2e;
  }
  
  /* Expertise section */
  .heading small {
    color: #6d9773;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .heading h3 {
    margin-top: 0.5rem;
    color: #0c3b2e;
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .expertise h4 {
    color: #bb8a52;
    font-weight: 700;
  }
  
  .expertise a {
    text-decoration: none;
    color: #fca61f;
  }
  
  .expertise a:hover {
    color: #6f34fe;
  }
  
  .expertise .service-card {
    text-align: center;
    padding: 15px 15px;
    border-radius: 0.7rem;
  }
  
  /* About work section */
  .aboutMe {
    background-color: #fff;
  }
  
  .aboutMe h4 {
    font-weight: 700;
  }
  
  .aboutMe p {
    line-height: 1.5;
    margin-bottom: 1.4rem;
  }
  
  /* Skill section */
  .skill {
    background-color: rgb(252, 251, 250);
  }
  
  .progress-card {
    padding: 12% 10% 10% 15%;
    background-color: #fff;
    text-align: center;
    border-radius: 10%;
  }
  
  .progress-card:hover {
    transform: scale(1.1, 1.1);
    transition-duration: 0.6s;
  }
  
  .circular-progress {
    position: relative;
    height: 130px;
    width: 130px;
    border-radius: 50%;
    background: conic-gradient(#7d2ae8 3.6deg, #ededed 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .circular-progress::before {
    content: "";
    position: absolute;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    background-color: #fff;
  }
  
  .progress-value {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .html-progress {
    color: #fca61f;
  }
  
  .javascript-progress {
    color: #6f34fe;
  }
  
  .php-progress {
    color: #20c997;
  }
  
  .reactjs-progress {
    color: #3f396d;
  }
  
  .text {
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  .heading p {
    font-size: 1.3rem;
  }
  
  /* Portfolio section */
  #myBtnContainer {
    margin-bottom: 45px;
  }
  
  #myBtnContainer button {
    border: none;
    color: #0c3b2e;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin: 0 25px;
  }
  
  #myBtnContainer button:hover {
    color: #bb8a52;
  }
  
  #myBtnContainer button:focus {
    outline: none;
  }
  
  .post .content h4 {
    font-size: 1rem;
    font-weight: 700;
  }
  
  .post .card {
    border: none;
  }
  
  /* Blog section */
  .blog {
    background-color: #f2f2ff;
  }
  
  .blog .blogpost .card {
    border: none;
    border-radius: 5%;
  }
  
  .nav-bg {
    background-color: #fff;
  }
  
  .blog .blogpost h4,
  .blogpost a {
    color: #fca61f;
    font-weight: 700;
    margin-top: 1rem;
    text-decoration: none;
  }
  
  .blogpost a:hover {
    color: #fca61f;
  }
  
  .blog .blogpost .read-more-btn {
    text-decoration: none;
    color: #000000;
    font-size: 1.1rem;
  }
  
  .blog .blogpost .read-more-btn:hover {
    color: #6f34fe;
  }
  
  /* Styling modal group */
  .btn-c {
    margin-left: 92%;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    margin-top: -5%;
  }
  
  .btn-c i {
    color: #fca61f;
  }
  
  .modal-body .content span {
    font-size: 1rem;
  }
  
  /* Contact section */
  .contact {
    background-color: #fff;
  }
  
  .contact-details i {
    font-size: 1.5rem;
    color: #6d9773;
  }
  
  .contact-details p {
    font-size: 1.2rem;
    margin-left: 1rem;
  }
  
  .contact-form .form-control:focus {
    box-shadow: none;
    border: 1px solid #6d9773;
  }
  
  .contact-form .form-control {
    padding: 10px 10px;
    width: 100%;
  }
  
  /* Footer section */
  footer {
    color: #0c3b2e;
  }
  
  footer .footer-text {
    color: #bb8a52;
  }
  
  
  /* Styling back to top button */
  #btn-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    font-size: 1.4rem;
    background-color: #0c3b2e;
    color: #fff;
    animation: pulse 3s infinite;
    width: 70px;
    height: 70px;
  }
  
  /* Resume Section */
  .resume .resume-title {
    color: #0c3b2e;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid #bb8a52;
    position: relative;
  }
  
  .resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #0c3b2e;
    margin-bottom: 10px;
  }
  
  .resume .resume-item h5 {
    font-size: 16px;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6d9773;
  }
  
  .resume .resume-item ul {
    padding-left: 20px;
  }
  
  .resume .resume-item ul li {
    padding-bottom: 10px;
    color: #0c3b2e;
  }
  
  .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: #f8f3ed;
    border: 2px solid #ffba00;
  }
  .icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.75rem; /* Space between icons */
  }
  
  .icons li {
    display: inline-block;
  }
  
  .icons a {
    text-decoration: none;
    color: #0c3b2e; /* Default icon color */
    font-size: 1.75rem; /* Icon size */
    transition: color 0.3s ease;
  }
  
  .icons a:hover {
    color: #bb8a52; /* Hover color */
  }
  
  /* Optional: Add background and padding to icons */
  .icons a {
    display: flex; /* Use Flexbox */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f8f3ed; /* Background color */
    color: #0c3b2e; /* Default icon color */
    font-size: 1.5rem; /* Icon size */
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .icons a:hover {
    background-color: #bb8a52; /* Hover background color */
    color: #fff; /* Hover icon color */
  }