@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins",serif;
}
.nav-link {
    color: #fff;
}
.bg_1 {
    background-color: #3d8eff;
}
.color_1 {
    color: #005fe3;
}
.top_part {
    background-image: url("../images/aboutme/top_card_background.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.small_font {
    font-size: 14px;
}
.mont_family {
    font-family: "Montserrat",serif;
}
.navbar-brand img {
  width: 250px;
}
/* -------------------NAV HOVER------------------- */
.nav-link:hover {
    color: #ffcc00 !important;
  } 
  .nav-link {
    position: relative;
    padding-bottom: 5px;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffcc00;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
  }
  
  .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  } 
  .nav_tool {
    transition: all 0.3s ease-out;
  }
  .nav_profile {
    transition: all 0.3s ease-out;
  }
  .nav_tool:hover {
    transform: scaleX(1.05);
    transform: translateY(-5px);
  }
  .nav_profile:hover {
    box-shadow: 0 0 5px #ffcc00;
    border-radius: 50%;
  } 
  /* ------------------BUTTON HOVER----------------- */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* ----------------------------------------------- */